freshcrate
Skin:/
Home > MCP Servers > autotask-mcp

autotask-mcp

MCP server for Kaseya Autotask PSA โ€” 39 tools for companies, tickets, projects, time entries, and more

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

MCP server for Kaseya Autotask PSA โ€” 39 tools for companies, tickets, projects, time entries, and more

README

Autotask MCP Server

Build Status codecov License Node.js

Give your AI assistant direct access to Autotask. Search tickets, create time entries, look up companies, manage projects โ€” all through natural language. No more copy-pasting between browser tabs and chat windows.

This is a Model Context Protocol (MCP) server that connects Claude (or any MCP-compatible AI) to your Autotask PSA environment. Your AI assistant gets 39 tools covering the operations MSP teams use daily: ticket triage, time logging, company lookups, project management, billing review, and more.

If you run an MSP on Autotask and you're tired of the context-switching tax, this is for you.

Part of the MSP Claude Plugins ecosystem โ€” a growing suite of AI integrations for the MSP stack including Datto RMM, IT Glue, HaloPSA, ConnectWise Automate, NinjaOne, Huntress, and more. Built by MSPs, for MSPs.

Autotask MCP server

One-Click Deployment

Deploy to DO

Deploy to Cloudflare Workers

Quick Start

Claude Desktop โ€” download, open, done:

  1. Download autotask-mcp.mcpb from the latest release
  2. Open the file (double-click or drag into Claude Desktop)
  3. Enter your Autotask credentials when prompted (Username, Secret, Integration Code)

No terminal, no JSON editing, no Node.js install required.

Claude Code (CLI):

claude mcp add autotask-mcp \
  -e AUTOTASK_USERNAME=your-user@company.com \
  -e AUTOTASK_SECRET=your-secret \
  -e AUTOTASK_INTEGRATION_CODE=your-code \
  -- npx -y github:wyre-technology/autotask-mcp

See Installation for Docker and from-source methods.

Features

  • ๐Ÿ”Œ MCP Protocol Compliance: Full support for MCP resources and tools
  • ๐Ÿ› ๏ธ Comprehensive API Coverage: 39 tools spanning companies, contacts, tickets, projects, billing items, time entries, notes, attachments, and more
  • ๐Ÿ” Advanced Search: Powerful search capabilities with filters across all entities
  • ๐Ÿ“ CRUD Operations: Create, read, update operations for core Autotask entities
  • ๐Ÿ”„ ID-to-Name Mapping: Automatic resolution of company and resource IDs to human-readable names
  • โšก Intelligent Caching: Smart caching system for improved performance and reduced API calls
  • ๐Ÿ”’ Secure Authentication: Enterprise-grade API security with Autotask credentials
  • ๐ŸŒ Dual Transport: Supports both stdio (local) and HTTP Streamable (remote/Docker) transports
  • ๐Ÿ“ฆ MCPB Packaging: One-click installation via MCP Bundle for desktop clients
  • ๐Ÿณ Docker Ready: Containerized deployment with HTTP transport and health checks
  • ๐Ÿ“Š Structured Logging: Comprehensive logging with configurable levels and formats
  • ๐Ÿงช Test Coverage: Comprehensive test suite with 80%+ coverage

Table of Contents

Installation

Option 1: MCPB Bundle (Claude Desktop)

The simplest method โ€” no terminal, no JSON editing, no Node.js install required.

  1. Download autotask-mcp.mcpb from the latest release
  2. Open the file (double-click or drag into Claude Desktop)
  3. Enter your Autotask credentials when prompted (Username, Secret, Integration Code)

For Claude Code (CLI), one command:

claude mcp add autotask-mcp \
  -e AUTOTASK_USERNAME=your-user@company.com \
  -e AUTOTASK_SECRET=your-secret \
  -e AUTOTASK_INTEGRATION_CODE=your-code \
  -- npx -y github:wyre-technology/autotask-mcp

Option 2: Docker

Local (stdio โ€” for Claude Desktop or Claude Code):

{
  "mcpServers": {
    "autotask": {
      "command": "docker",
      "args": [
        "run", "--rm", "-i",
        "-e", "MCP_TRANSPORT=stdio",
        "-e", "AUTOTASK_USERNAME=your-user@company.com",
        "-e", "AUTOTASK_SECRET=your-secret",
        "-e", "AUTOTASK_INTEGRATION_CODE=your-code",
        "--entrypoint", "node",
        "ghcr.io/wyre-technology/autotask-mcp:latest",
        "dist/entry.js"
      ]
    }
  }
}

Remote (HTTP Streamable โ€” for server deployments):

docker run -d \
  --name autotask-mcp \
  -p 8080:8080 \
  -e AUTOTASK_USERNAME="your-user@company.com" \
  -e AUTOTASK_SECRET="your-secret" \
  -e AUTOTASK_INTEGRATION_CODE="your-code" \
  --restart unless-stopped \
  ghcr.io/wyre-technology/autotask-mcp:latest

# Verify
curl http://localhost:8080/health

Clients connect to http://host:8080/mcp using MCP Streamable HTTP transport.

Gateway Mode (for MCP Gateway deployments):

When deploying behind an MCP Gateway that injects credentials via HTTP headers:

docker run -d \
  --name autotask-mcp \
  -p 8080:8080 \
  -e AUTH_MODE=gateway \
  --restart unless-stopped \
  ghcr.io/wyre-technology/autotask-mcp:latest

The gateway injects credentials via headers:

  • X-API-Key: Autotask username
  • X-API-Secret: Autotask secret
  • X-Integration-Code: Autotask integration code

See Gateway Mode for details.

Option 3: From Source (Development)

git clone https://github.com/wyre-technology/autotask-mcp.git
cd autotask-mcp
npm ci && npm run build

Then point your MCP client at dist/entry.js:

{
  "mcpServers": {
    "autotask": {
      "command": "node",
      "args": ["/path/to/autotask-mcp/dist/entry.js"],
      "env": {
        "AUTOTASK_USERNAME": "your-user@company.com",
        "AUTOTASK_SECRET": "your-secret",
        "AUTOTASK_INTEGRATION_CODE": "your-code"
      }
    }
  }
}

Prerequisites

  • Valid Autotask API credentials (API user email, secret, integration code)
  • MCP-compatible client (Claude Desktop, Claude Code, etc.)
  • Docker (for Option 2) or Node.js 18+ (for Option 3)

Configuration

Environment Variables

Create a .env file with your configuration:

# Required Autotask API credentials (Local Mode)
AUTOTASK_USERNAME=your-api-user@example.com
AUTOTASK_SECRET=your-secret-key
AUTOTASK_INTEGRATION_CODE=your-integration-code

# Optional configuration
# AUTOTASK_API_URL is auto-detected from AUTOTASK_USERNAME via Autotask's
# unauthenticated zoneInformation endpoint on first connect. Only set this
# explicitly to override auto-detection (e.g. for an on-prem proxy).
# AUTOTASK_API_URL=https://webservices2.autotask.net/atservicesrest/
MCP_SERVER_NAME=autotask-mcp

# Authentication mode
AUTH_MODE=env               # env (local), gateway (hosted)

# Transport (stdio for local/desktop, http for remote/Docker)
MCP_TRANSPORT=stdio          # stdio, http
MCP_HTTP_PORT=8080           # HTTP transport port (only used when MCP_TRANSPORT=http)
MCP_HTTP_HOST=0.0.0.0        # HTTP transport bind address

# Logging
LOG_LEVEL=info          # error, warn, info, debug
LOG_FORMAT=simple       # simple, json

# Environment
NODE_ENV=production

Gateway Mode

When deployed behind an MCP Gateway (e.g., mcp.wyre.ai), the server operates in gateway mode where credentials are injected via HTTP headers on each request.

Enable Gateway Mode:

AUTH_MODE=gateway
MCP_TRANSPORT=http

Expected Headers:

Header Description
X-API-Key Autotask API username (email)
X-API-Secret Autotask API secret key
X-Integration-Code Autotask integration code
X-API-URL (Optional) Custom Autotask API URL

Health Check Response (Gateway Mode):

{
  "status": "ok",
  "transport": "http",
  "authMode": "gateway",
  "timestamp": "2026-02-05T10:00:00.000Z"
}

For detailed migration instructions, see the Migration Guide.

๐Ÿ’ก Pro Tip: Copy the above content to a .env file in your project root.

Autotask API Setup

  1. Create API User: In Autotask, create a dedicated API user with appropriate permissions
  2. Generate Secret: Generate an API secret for the user
  3. Integration Code: Obtain your integration code from Autotask
  4. Permissions: Ensure the API user has read/write access to required entities

For detailed setup instructions, see the Autotask API documentation.

Usage

Command Line

# Start the MCP server (stdio transport, for piping to an MCP client)
node dist/entry.js

# Start with HTTP transport
MCP_TRANSPORT=http node dist/index.js

MCP Client Configuration

See Installation for all setup methods.

API Reference

Resources

Resources provide read-only access to Autotask data:

  • autotask://companies - List all companies
  • autotask://companies/{id} - Get specific company
  • autotask://contacts - List all contacts
  • autotask://contacts/{id} - Get specific contact
  • autotask://tickets - List all tickets
  • autotask://tickets/{id} - Get specific ticket
  • autotask://time-entries - List time entries

Tools

The server provides 39 tools for interacting with Autotask:

Company Operations

  • autotask_search_companies - Search companies with filters
  • autotask_create_company - Create new company
  • autotask_update_company - Update existing company

Contact Operations

  • autotask_search_contacts - Search contacts with filters
  • autotask_create_contact - Create new contact

Ticket Operations

  • autotask_search_tickets - Search tickets with filters
  • autotask_get_ticket_details - Get full ticket details by ID
  • autotask_create_ticket - Create new ticket

Time Entry Operations

  • autotask_create_time_entry - Log time entry
  • autotask_search_time_entries - Search time entries with filters (resource, ticket, project, date range)

Billing Items (Approve and Post Workflow)

  • autotask_search_billing_items - Search approved and posted billing items
  • autotask_get_billing_item - Get specific billing item by ID
  • autotask_search_billing_item_approval_levels - Search multi-level approval records for time entries

Project Operations

  • autotask_search_projects - Search projects with filters
  • autotask_create_project - Create new project

Resource Operations

  • autotask_search_resources - Search resources (technicians/users)

Note Operations

  • autotask_get_ticket_note / autotask_search_ticket_notes / autotask_create_ticket_note
  • autotask_get_project_note / autotask_search_project_notes / autotask_create_project_note
  • autotask_get_company_note / autotask_search_company_notes / autotask_create_company_note

Attachment Operations

  • autotask_get_ticket_attachment - Get ticket attachment
  • autotask_search_ticket_attachments - Search ticket attachments

Financial Operations

  • autotask_get_expense_report / autotask_search_expense_reports / autotask_create_expense_report
  • autotask_get_quote / autotask_search_quotes / autotask_create_quote
  • autotask_search_invoices - Search invoices
  • autotask_search_contracts - Search contracts

Configuration Items

  • autotask_search_configuration_items - Search configuration items (assets)

Task Operations

  • autotask_search_tasks - Search project tasks
  • autotask_create_task - Create project task

Utility Operations

  • autotask_test_connection - Test API connectivity

Example Tool Usage

// Search for companies
{
  "name": "autotask_search_companies",
  "arguments": {
    "searchTerm": "Acme Corp",
    "isActive": true,
    "pageSize": 10
  }
}

// Create a new ticket
{
  "name": "autotask_create_ticket",
  "arguments": {
    "companyID": 12345,
    "title": "Server maintenance request",
    "description": "Need to perform monthly server maintenance",
    "priority": 2,
    "status": 1
  }
}

ID-to-Name Mapping

The Autotask MCP server includes intelligent ID-to-name mapping that automatically resolves company and resource IDs to human-readable names, making API responses much more useful for AI assistants and human users.

Automatic Enhancement

All search and detail tools automatically include an _enhanced field with resolved names:

{
  "id": 12345,
  "title": "Sample Ticket",
  "companyID": 678,
  "assignedResourceID": 90,
  "_enhanced": {
    "companyName": "Acme Corporation",
    "assignedResourceName": "John Smith"
  }
}

How It Works

ID-to-name mapping is applied automatically to all search and detail tool results. No additional tools are needed โ€” the _enhanced field is added transparently to every response that contains company or resource IDs.

Performance Features

  • Smart Caching: Names are cached for 30 minutes to reduce API calls
  • Bulk Operations: Efficient batch lookups for multiple IDs
  • Graceful Fallback: Returns "Unknown Company (123)" if lookup fails
  • Parallel Processing: Multiple mappings resolved simultaneously

Testing Mapping

Test the mapping functionality:

npm run test:mapping

For detailed mapping documentation, see docs/mapping.md.

HTTP Transport

The server supports the MCP Streamable HTTP transport for remote deployments (e.g., Docker, cloud hosting). Set MCP_TRANSPORT=http to enable it.

# Start with HTTP transport
MCP_TRANSPORT=http MCP_HTTP_PORT=8080 node dist/index.js

The HTTP transport exposes:

  • POST /mcp โ€” MCP Streamable HTTP endpoint
  • GET /health โ€” Health check (returns {"status":"ok"})

Clients must send requests to /mcp with Accept: application/json, text/event-stream headers per the MCP Streamable HTTP specification.

Docker Deployment

The Docker image uses HTTP transport by default (port 8080) with a built-in health check.

Using Pre-built Image from GitHub Container Registry

The Docker image defaults to HTTP transport on port 8080 โ€” suitable for remote/server deployments where clients connect over the network.

# Pull the latest image
docker pull ghcr.io/wyre-technology/autotask-mcp:latest

# Run container with HTTP transport (default)
docker run -d \
  --name autotask-mcp \
  -p 8080:8080 \
  -e AUTOTASK_USERNAME="your-api-user@example.com" \
  -e AUTOTASK_SECRET="your-secret-key" \
  -e AUTOTASK_INTEGRATION_CODE="your-integration-code" \
  --restart unless-stopped \
  ghcr.io/wyre-technology/autotask-mcp:latest

# Verify it's running
curl http://localhost:8080/health

For stdio usage with Claude Desktop, see Installation Option 2.

Quick Start (From Source)

# Clone repository
git clone https://github.com/wyre-technology/autotask-mcp.git
cd autotask-mcp

# Create environment file
cp .env.example .env
# Edit .env with your credentials

# Start with docker-compose
docker compose up -d

Production Deployment

# Build production image locally
docker build -t autotask-mcp:latest .

# Run container
docker run -d \
  --name autotask-mcp \
  --env-file .env \
  --restart unless-stopped \
  autotask-mcp:latest

Development Mode

# Start development environment with hot reload
docker compose --profile dev up autotask-mcp-dev

Development

Setup

git clone https://github.com/wyre-technology/autotask-mcp.git
cd autotask-mcp
npm install

Available Scripts

npm run dev          # Start development server with hot reload
npm run build        # Build for production
npm run test         # Run test suite
npm run test:watch   # Run tests in watch mode
npm run test:coverage # Run tests with coverage
npm run lint         # Run ESLint
npm run lint:fix     # Fix ESLint issues

Project Structure

autotask-mcp/
โ”œโ”€โ”€ src/
โ”‚   โ”œโ”€โ”€ handlers/           # MCP request handlers
โ”‚   โ”œโ”€โ”€ mcp/               # MCP server implementation
โ”‚   โ”œโ”€โ”€ services/          # Autotask service layer
โ”‚   โ”œโ”€โ”€ types/             # TypeScript type definitions
โ”‚   โ”œโ”€โ”€ utils/             # Utility functions (config, logger, cache)
โ”‚   โ”œโ”€โ”€ entry.ts           # Entry point (stdout guard + .env loader)
โ”‚   โ””โ”€โ”€ index.ts           # Server bootstrap (config, logger, server init)
โ”œโ”€โ”€ tests/                 # Test files
โ”œโ”€โ”€ scripts/               # Build and packaging scripts
โ”‚   โ””โ”€โ”€ pack-mcpb.js       # MCPB bundle creation
โ”œโ”€โ”€ manifest.json          # MCPB manifest for desktop distribution
โ”œโ”€โ”€ Dockerfile             # Container definition (HTTP transport)
โ”œโ”€โ”€ docker-compose.yml     # Multi-service orchestration
โ””โ”€โ”€ package.json          # Project configuration

Testing

Running Tests

# Run all tests
npm test

# Run with coverage
npm run test:coverage

# Run in watch mode
npm run test:watch

# Run specific test file
npm test -- tests/autotask-service.test.ts

Test Categories

  • Unit Tests: Service layer and utility functions
  • Integration Tests: MCP protocol compliance
  • API Tests: Autotask API integration (requires credentials)

Coverage Requirements

  • Minimum 80% coverage for all metrics
  • 100% coverage for critical paths (authentication, data handling)

Configuration Reference

Environment Variables

Variable Required Default Description
AUTOTASK_USERNAME โœ… - Autotask API username (email)
AUTOTASK_SECRET โœ… - Autotask API secret key
AUTOTASK_INTEGRATION_CODE โœ… - Autotask integration code
AUTOTASK_API_URL โŒ Auto-detected Autotask API endpoint URL
MCP_SERVER_NAME โŒ autotask-mcp MCP server name
MCP_TRANSPORT โŒ stdio Transport type (stdio or http)
MCP_HTTP_PORT โŒ 8080 HTTP transport port
MCP_HTTP_HOST โŒ 0.0.0.0 HTTP transport bind address
LOG_LEVEL โŒ info Logging level
LOG_FORMAT โŒ simple Log output format
NODE_ENV โŒ development Node.js environment

Logging Levels

  • error: Only error messages
  • warn: Warnings and errors
  • info: General information, warnings, and errors
  • debug: Detailed debugging information

Log Formats

  • simple: Human-readable console output
  • json: Structured JSON output (recommended for production)

Troubleshooting

Common Issues

Authentication Errors

Error: Missing required Autotask credentials

Solution: Ensure all required environment variables are set correctly.

Connection Timeouts

Error: Connection to Autotask API failed

Solutions:

  • Check network connectivity
  • Verify API endpoint URL
  • Confirm API user has proper permissions

Permission Denied

Error: User does not have permission to access this resource

Solution: Review Autotask API user permissions and security level settings.

Debug Mode

Enable debug logging for detailed troubleshooting:

LOG_LEVEL=debug npm start

Health Checks

Test server connectivity:

# Run test suite
npm run test

# For HTTP transport, check the health endpoint
curl http://localhost:8080/health
# Returns: {"status":"ok"}

# Test API connection with debug logging
LOG_LEVEL=debug npm start

Autotask API Rate Limits

Problem: 429 Too Many Requests or "thread limit exceeded" errors when Claude queries aggressively

Autotask enforces 3 concurrent threads per endpoint per API tracking identifier. When an LLM issues multiple tool calls simultaneously (e.g., searching tickets, companies, and contacts at once), requests can pile up and hit this limit.

Built-in mitigation: The underlying autotask-node SDK automatically queues excess requests rather than failing immediately. Requests wait for a slot to free up, so you generally won't see 429 errors โ€” but you may notice slower responses under heavy load.

Critical for team/multi-user deployments: If multiple users or the MCP Gateway share the same API credentials, they compete for the same 3-thread budget. This can cause noticeable slowdowns and, in severe cases, queued requests that time out.

Solution โ€” one API key per team: Create a dedicated Autotask API user per team or integration. Each user has an independent integrationCode with its own thread budget:

  1. Admin > Resources (Users) > Resources/Users โ†’ Add Resource
  2. Set Security Level to API User
  3. Note the username, secret, and integration code
  4. Set AUTOTASK_USERNAME, AUTOTASK_SECRET, and AUTOTASK_INTEGRATION_CODE per team
Support Team  โ†’ AUTOTASK_INTEGRATION_CODE=SUPPORT_TEAM_CODE  (3 threads)
Projects Team โ†’ AUTOTASK_INTEGRATION_CODE=PROJECTS_TEAM_CODE (3 threads, independent)

Additionally, Autotask limits 10,000 total requests per hour across all integrations hitting your tenant. If you hit this limit, all integrations will start receiving 429s โ€” another reason to use targeted queries with appropriate filters.

MCP Client Issues

Problem: MCP server not appearing in Claude Desktop Solutions:

  1. Check configuration file syntax (valid JSON)
  2. Verify file path in the configuration
  3. Ensure environment variables are set correctly
  4. Restart Claude Desktop completely

Problem: "Invalid JSON-RPC message: [dotenv@...] injecting env" / Server disconnected Cause: The autotask-node library calls dotenv.config() at module load time. dotenv v17+ writes status messages via console.log to stdout, which corrupts the MCP stdio JSON-RPC channel. Solution: Ensure you're using dist/entry.js (not dist/index.js) as the entry point. The entry wrapper redirects console.log to stderr before any libraries load.

Problem: Slow responses Solutions:

  1. Check network connectivity to Autotask API
  2. Enable debug logging (LOG_LEVEL=debug) to identify bottlenecks
  3. The server caches company/resource names for 30 minutes automatically

Security Best Practices

  • Store credentials in environment variables, not directly in config files
  • Limit Autotask API user permissions to the minimum required
  • Rotate API credentials regularly
  • For Docker deployments, use secrets management rather than plain environment variables

Contributing

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Development Guidelines

  • Follow TypeScript best practices
  • Maintain test coverage above 80%
  • Use conventional commit messages
  • Update documentation for API changes
  • Add tests for new features

License

This project is licensed under the Apache License 2.0. See the LICENSE file for details.

Contributor License Agreement

By submitting a pull request, you agree to the terms of our Contributor License Agreement. This ensures that contributions can be properly licensed and that you have the right to submit the code.

Contributors

Avatar Name Contributions
@asachs01 Maintainer
@Baphomet480 CLI bin fix

Support

Acknowledgments


Built by WYRE Technology โ€” part of the MSP Claude Plugins ecosystem

Release History

VersionChangesUrgencyDate
v2.28.1## [2.28.1](https://github.com/wyre-technology/autotask-mcp/compare/v2.28.0...v2.28.1) (2026-06-02) ### Bug Fixes * **ci:** repair MCPB pack/upload after package scope rename ([251d9e2](https://github.com/wyre-technology/autotask-mcp/commit/251d9e2fbc724e286c3aad234d5534c1f8606e11)) High6/2/2026
v2.27.0# [2.27.0](https://github.com/wyre-technology/autotask-mcp/compare/v2.26.1...v2.27.0) (2026-05-22) ### Features * **tools:** expose issueType + subIssueType on autotask_update_ticket ([#110](https://github.com/wyre-technology/autotask-mcp/issues/110)) ([b0bbd76](https://github.com/wyre-technology/autotask-mcp/commit/b0bbd76981addc75ec7621db53ed08107a535922)) High5/22/2026
v2.26.0# [2.26.0](https://github.com/wyre-technology/autotask-mcp/compare/v2.25.6...v2.26.0) (2026-05-18) ### Features * **rate-limit:** surface Autotask 429/threshold errors as structured ([#69](https://github.com/wyre-technology/autotask-mcp/issues/69), [#91](https://github.com/wyre-technology/autotask-mcp/issues/91)) ([#107](https://github.com/wyre-technology/autotask-mcp/issues/107)) ([3fad766](https://github.com/wyre-technology/autotask-mcp/commit/3fad766ece80da8e836691ab3689e1a4f392c524)), cloHigh5/18/2026
v2.25.3## [2.25.3](https://github.com/wyre-technology/autotask-mcp/compare/v2.25.2...v2.25.3) (2026-05-13) ### Bug Fixes * **release:** grant id-token: write to deploy job ([#100](https://github.com/wyre-technology/autotask-mcp/issues/100)) ([d89e5c0](https://github.com/wyre-technology/autotask-mcp/commit/d89e5c0a3c127a7501a56b840714816a0f2b33f0)) * **release:** re-pin shared deploy workflow to d6ace52 ([#99](https://github.com/wyre-technology/autotask-mcp/issues/99)) ([1dde178](https://github.com/wHigh5/13/2026
v2.24.4## [2.24.4](https://github.com/wyre-technology/autotask-mcp/compare/v2.24.3...v2.24.4) (2026-05-05) ### Performance Improvements * trim tool descriptions for token reduction ([#92](https://github.com/wyre-technology/autotask-mcp/issues/92)) ([b42c46e](https://github.com/wyre-technology/autotask-mcp/commit/b42c46e4c7ced6da39e695d1901863e5b04efecf)) High5/5/2026
v2.24.3## [2.24.3](https://github.com/wyre-technology/autotask-mcp/compare/v2.24.2...v2.24.3) (2026-05-04) ### Bug Fixes * **add-to-project:** call shared reusable workflow ([#90](https://github.com/wyre-technology/autotask-mcp/issues/90)) ([8c75f7e](https://github.com/wyre-technology/autotask-mcp/commit/8c75f7ed8f757488b258e2ef5eab2c673ace7012)) High5/4/2026
v2.24.1## [2.24.1](https://github.com/wyre-technology/autotask-mcp/compare/v2.24.0...v2.24.1) (2026-04-28) ### Bug Fixes * **release:** docker tag uses release output, not package.json ([#86](https://github.com/wyre-technology/autotask-mcp/issues/86)) ([08c7d6a](https://github.com/wyre-technology/autotask-mcp/commit/08c7d6aa2f8ff9d592d3a54cc72024c7891fefc6)) High4/28/2026
v2.20.2## [2.20.2](https://github.com/wyre-technology/autotask-mcp/compare/v2.20.1...v2.20.2) (2026-04-23) ### Bug Fixes * **http:** add CORS preflight handling for browser-based MCP clients ([#70](https://github.com/wyre-technology/autotask-mcp/issues/70)) ([82515e6](https://github.com/wyre-technology/autotask-mcp/commit/82515e669f8fdd4864c8d4c5095fb99d93a70e93)) High4/23/2026
v2.20.1## [2.20.1](https://github.com/wyre-technology/autotask-mcp/compare/v2.20.0...v2.20.1) (2026-04-21) ### Bug Fixes * **mapping:** paginate company cache and stop caching direct-get fallbacks ([#68](https://github.com/wyre-technology/autotask-mcp/issues/68)) ([b0812eb](https://github.com/wyre-technology/autotask-mcp/commit/b0812eb15cf4934a49425361370122607637b526)) High4/21/2026
v2.20.0# [2.20.0](https://github.com/wyre-technology/autotask-mcp/compare/v2.19.4...v2.20.0) (2026-04-21) ### Features * add MCP prompt handlers ([#67](https://github.com/wyre-technology/autotask-mcp/issues/67)) ([6e37fb0](https://github.com/wyre-technology/autotask-mcp/commit/6e37fb00666862c244759598d55699d03c7f0186)) High4/21/2026
v2.19.4## [2.19.4](https://github.com/wyre-technology/autotask-mcp/compare/v2.19.3...v2.19.4) (2026-04-15) ### Bug Fixes * **deploy:** correct ACA container name โ€” gwp-autotask โ†’ mcpgw-prod-autotask ([3d7dc0c](https://github.com/wyre-technology/autotask-mcp/commit/3d7dc0cdc01fc82482251b69f3164e308ddbd00e)) High4/15/2026
v2.19.3## [2.19.3](https://github.com/wyre-technology/autotask-mcp/compare/v2.19.2...v2.19.3) (2026-04-13) ### Bug Fixes * **security:** isolate per-request credentials in gateway mode ([#66](https://github.com/wyre-technology/autotask-mcp/issues/66)) ([c7f582c](https://github.com/wyre-technology/autotask-mcp/commit/c7f582caea32977212293ea6de1ea0c93517ca00)) High4/13/2026
v2.19.2## [2.19.2](https://github.com/wyre-technology/autotask-mcp/compare/v2.19.1...v2.19.2) (2026-04-09) ### Bug Fixes * **http:** fallback to GET for child entities that don't support /query ([93b21d5](https://github.com/wyre-technology/autotask-mcp/commit/93b21d552e9badc336cc3fbceba52c3f1d9be4d3)) High4/9/2026
v2.19.1## [2.19.1](https://github.com/wyre-technology/autotask-mcp/compare/v2.19.0...v2.19.1) (2026-04-08) ### Bug Fixes * **service:** replace autotask-node SDK with native fetch throughout ([6357573](https://github.com/wyre-technology/autotask-mcp/commit/6357573e1c3ae9ed1f08143f3b25a812072c8adc)) High4/8/2026
v2.19.0# [2.19.0](https://github.com/wyre-technology/autotask-mcp/compare/v2.18.0...v2.19.0) (2026-04-08) ### Bug Fixes * **release:** drop @semantic-release/git to unblock releases ([#64](https://github.com/wyre-technology/autotask-mcp/issues/64)) ([98171ab](https://github.com/wyre-technology/autotask-mcp/commit/98171abd837da9454c66a2676642bc56bca1a3d7)), closes [#55](https://github.com/wyre-technology/autotask-mcp/issues/55) [#5](https://github.com/wyre-technology/autotask-mcp/issues/5) * **ticketMedium4/8/2026
v2.18.0# [2.18.0](https://github.com/wyre-technology/autotask-mcp/compare/v2.17.2...v2.18.0) (2026-04-08) ### Features * **attachments:** add autotask_create_ticket_attachment tool ([#55](https://github.com/wyre-technology/autotask-mcp/issues/55)) ([#62](https://github.com/wyre-technology/autotask-mcp/issues/62)) ([8ff325e](https://github.com/wyre-technology/autotask-mcp/commit/8ff325e1f11d24097aab0f1a5c7a5968bc4d409d)) * **billing:** add invoice details tool and billing item filters ([#55](https://Medium4/8/2026
v2.17.2## [2.17.2](https://github.com/wyre-technology/autotask-mcp/compare/v2.17.1...v2.17.2) (2026-04-07) ### Bug Fixes * **ci:** deploy :latest tag, force revision via env var bump ([dd31423](https://github.com/wyre-technology/autotask-mcp/commit/dd3142390e20236a77bf784b79856a8c28a11f1f)) Medium4/7/2026
v2.17.1## [2.17.1](https://github.com/wyre-technology/autotask-mcp/compare/v2.17.0...v2.17.1) (2026-04-06) ### Bug Fixes * resolve Docker build failure caused by prepare script running before source copy ([87b0a0c](https://github.com/wyre-technology/autotask-mcp/commit/87b0a0cfde754bfe0f98980893834db6afd0eed1)) Medium4/6/2026
v2.17.0# [2.17.0](https://github.com/wyre-technology/autotask-mcp/compare/v2.16.1...v2.17.0) (2026-04-06) ### Bug Fixes * allow unauthenticated tools/list in gateway mode ([afa5120](https://github.com/wyre-technology/autotask-mcp/commit/afa51208a9c1dd06625809b8339d11be65770ee2)) * **tests:** update test expectations for implemented billing code methods ([1833d02](https://github.com/wyre-technology/autotask-mcp/commit/1833d02fd217d82348167067dd43d938b40f31c3)) ### Features * add Regular Time entryMedium4/6/2026
v2.16.1## [2.16.1](https://github.com/wyre-technology/autotask-mcp/compare/v2.16.0...v2.16.1) (2026-04-03) ### Bug Fixes * **time-entries:** bypass broken list() filter by calling /TimeEntries/query directly ([146e94d](https://github.com/wyre-technology/autotask-mcp/commit/146e94d0b415c339d5201071e2e56ff1b6d4429c)), closes [#53](https://github.com/wyre-technology/autotask-mcp/issues/53) Medium4/3/2026
v2.16.0# [2.16.0](https://github.com/wyre-technology/autotask-mcp/compare/v2.15.2...v2.16.0) (2026-03-31) ### Bug Fixes * **ci:** Resolve npm ci prefer-offline/online conflict in Dockerfile ([60734c8](https://github.com/wyre-technology/autotask-mcp/commit/60734c8cc935b3913c3c310a1d039efdd5d41254)) ### Features * add TicketCharges CRUD support ([b61aaf0](https://github.com/wyre-technology/autotask-mcp/commit/b61aaf0b0e113121b73a851b17970164ada9edf4)) Medium3/31/2026
v2.15.2## [2.15.2](https://github.com/wyre-technology/autotask-mcp/compare/v2.15.1...v2.15.2) (2026-03-31) ### Bug Fixes * **deploy:** replace node_compat with nodejs_compat for Wrangler v4 ([e0bb78d](https://github.com/wyre-technology/autotask-mcp/commit/e0bb78d414fe0ff6c2a571440c9ef63623043541)), closes [#50](https://github.com/wyre-technology/autotask-mcp/issues/50) Medium3/31/2026
v2.15.1## [2.15.1](https://github.com/wyre-technology/autotask-mcp/compare/v2.15.0...v2.15.1) (2026-03-26) ### Bug Fixes * task creation endpoint, ticket notes, field info + phase tools ([9d7fa42](https://github.com/wyre-technology/autotask-mcp/commit/9d7fa42a1ce5d9e08651ca5b524a86d9b29a404b)), closes [#46](https://github.com/wyre-technology/autotask-mcp/issues/46) [#47](https://github.com/wyre-technology/autotask-mcp/issues/47) Medium3/26/2026
v2.15.0# [2.15.0](https://github.com/wyre-technology/autotask-mcp/compare/v2.14.1...v2.15.0) (2026-03-25) ### Bug Fixes * add missing required fields to task, project note, and project creation ([df72fb4](https://github.com/wyre-technology/autotask-mcp/commit/df72fb413e6e50e460a5864fd656d318ead622e1)), closes [wyre-technology/msp-claude-plugins#36](https://github.com/wyre-technology/msp-claude-plugins/issues/36) [#40](https://github.com/wyre-technology/autotask-mcp/issues/40) [#41](https://github.coMedium3/25/2026
v2.14.1## [2.14.1](https://github.com/wyre-technology/autotask-mcp/compare/v2.14.0...v2.14.1) (2026-03-22) ### Bug Fixes * **docker:** pin npm to v10 to fix git dep install failure ([bab0dc8](https://github.com/wyre-technology/autotask-mcp/commit/bab0dc8f009011286231935f1833694fb4ef9377)) Low3/22/2026
v2.14.0# [2.14.0](https://github.com/wyre-technology/autotask-mcp/compare/v2.13.0...v2.14.0) (2026-03-22) ### Features * add Service Calls CRUD support ([#38](https://github.com/wyre-technology/autotask-mcp/issues/38)) ([163d5eb](https://github.com/wyre-technology/autotask-mcp/commit/163d5eb36c6936b416d1d0fb127641975a2c4c9e)) ### Reverts * remove arm64 platform and QEMU, keep linux/amd64 only ([d2f4d6a](https://github.com/wyre-technology/autotask-mcp/commit/d2f4d6a19eb729e74dd48cf6cb38c477b3f00afLow3/22/2026
v2.13.0# [2.13.0](https://github.com/wyre-technology/autotask-mcp/compare/v2.12.1...v2.13.0) (2026-03-20) ### Features * add TicketCharges CRUD support ([#36](https://github.com/wyre-technology/autotask-mcp/issues/36)) ([de2d684](https://github.com/wyre-technology/autotask-mcp/commit/de2d684223047d6d87f4682ca2459ed8e02f06fa)) Low3/20/2026
v2.12.1## [2.12.1](https://github.com/wyre-technology/autotask-mcp/compare/v2.12.0...v2.12.1) (2026-03-20) ### Bug Fixes * **ci:** add multi-platform Docker builds for arm64 support ([9e565c6](https://github.com/wyre-technology/autotask-mcp/commit/9e565c6f2a046834df10b1774562867766e5a647)) Low3/20/2026
v2.12.0## What's New ### Added - **Regular Time entry support** via autotask-node v2.2.0: - `createRegularTimeEntry()` โ€” create non-ticket time entries (meetings, admin, training, etc.) - `TimeEntries.createDirect()` โ€” POST to `/TimeEntries` without parent scope - `searchResources()` / `resolveResourceByName()` โ€” look up technicians by full name - `getInternalBillingCodes()` / `resolveInternalBillingCodeByName()` โ€” resolve Regular Time categories ### Fixed - **Better 500/5xx error messages** Low3/15/2026
v2.11.5## [2.11.5](https://github.com/wyre-technology/autotask-mcp/compare/v2.11.4...v2.11.5) (2026-03-13) ### Bug Fixes * **deps:** update autotask-node with gzip compression body fix ([62a6373](https://github.com/wyre-technology/autotask-mcp/commit/62a6373)), closes [wyre-technology/autotask-node#151](https://github.com/wyre-technology/autotask-node/issues/151) The `transformRequest` was setting `Content-Encoding: gzip` but sending uncompressed JSON, causing 500 errors on child entity endpoints thLow3/14/2026
v2.11.4## [2.11.4](https://github.com/wyre-technology/autotask-mcp/compare/v2.11.3...v2.11.4) (2026-03-13) ### Bug Fixes * disable broken gzip compression and fix create ID parsing ([d6889f3](https://github.com/wyre-technology/autotask-mcp/commit/d6889f395b8b5327f976ac6cdda81ace4b6f6eed)) Low3/13/2026
v2.11.3### Changes in v2.11.3 #### Bug Fixes * **tools:** return explicit "not found" error responses when API lookups return empty results to prevent LLM hallucination ([#31](https://github.com/wyre-technology/autotask-mcp/pull/31)) * **quotes:** fix 404 error when creating quote items and 500 error when creating quotes ([#30](https://github.com/wyre-technology/autotask-mcp/pull/30)) #### Features * **opportunities:** add `autotask_create_opportunity` MCP toolLow3/12/2026
v2.11.2## [2.11.2](https://github.com/wyre-technology/autotask-mcp/compare/v2.11.1...v2.11.2) (2026-03-12) ### Bug Fixes * quote item creation 404 and quote creation 500 errors ([#30](https://github.com/wyre-technology/autotask-mcp/issues/30)) ([7f8e64f](https://github.com/wyre-technology/autotask-mcp/commit/7f8e64f89350dba7962a56f2fa461b7db6af26ec)), closes [wyre-technology/autotask-node#149](https://github.com/wyre-technology/autotask-node/issues/149) Low3/12/2026
v2.11.1## [2.11.1](https://github.com/wyre-technology/autotask-mcp/compare/v2.11.0...v2.11.1) (2026-03-10) ### Bug Fixes * **expenses:** correct weekEnding field name and required params for expense report creation ([226d38d](https://github.com/wyre-technology/autotask-mcp/commit/226d38d3e1f52509421fba6fe3cfa31fca9c3046)) Low3/10/2026
v2.11.0# [2.11.0](https://github.com/wyre-technology/autotask-mcp/compare/v2.10.4...v2.11.0) (2026-03-09) ### Features * Quote Builder - create quotes with line items from cost sheets ([#29](https://github.com/wyre-technology/autotask-mcp/issues/29)) ([5da3a98](https://github.com/wyre-technology/autotask-mcp/commit/5da3a98895446b051923afa3aa568f51bc423f23)) Low3/9/2026
v2.10.4## [2.10.4](https://github.com/wyre-technology/autotask-mcp/compare/v2.10.3...v2.10.4) (2026-03-09) ### Bug Fixes * **tests:** update expense item test assertions to match refactored API ([9affc62](https://github.com/wyre-technology/autotask-mcp/commit/9affc62d0769cb3ce7d079f1fbfae0e3c694ff2b)), closes [#27](https://github.com/wyre-technology/autotask-mcp/issues/27) Low3/9/2026
v2.10.3## [2.10.3](https://github.com/wyre-technology/autotask-mcp/compare/v2.10.2...v2.10.3) (2026-03-06) ### Bug Fixes * **deps:** update autotask-node to compiled semaphore fix ([f282e21](https://github.com/wyre-technology/autotask-mcp/commit/f282e21385e9b2640b8de7747df6070a8aecc605)) * **gateway:** skip autotask-node connection test in stateless mode ([67643c6](https://github.com/wyre-technology/autotask-mcp/commit/67643c691d233ca0c4b760f99474203e3584a6ae)) * **tickets:** update autotask-node loLow3/6/2026
v2.10.2## [2.10.2](https://github.com/wyre-technology/autotask-mcp/compare/v2.10.1...v2.10.2) (2026-03-03) ### Bug Fixes * **deps:** bump autotask-node to main branch with endpoint semaphore fix ([35cef9c](https://github.com/wyre-technology/autotask-mcp/commit/35cef9c659f9e0b399f03ccabcd9c9ea75878228)) Low3/3/2026
v2.10.1## [2.10.1](https://github.com/wyre-technology/autotask-mcp/compare/v2.10.0...v2.10.1) (2026-03-03) ### Bug Fixes * **tickets:** use PATCH instead of PUT for updateTicket ([c0a0b7b](https://github.com/wyre-technology/autotask-mcp/commit/c0a0b7bf046831982a39e699857b278474258588)) Low3/3/2026
v2.10.0# [2.10.0](https://github.com/wyre-technology/autotask-mcp/compare/v2.9.0...v2.10.0) (2026-03-03) ### Features * **tools:** add autotask_update_ticket tool ([b73c3f9](https://github.com/wyre-technology/autotask-mcp/commit/b73c3f9faee84083510bcc7e07130c0577520a34)), closes [#28](https://github.com/wyre-technology/autotask-mcp/issues/28) * **tools:** wire autotask_update_ticket handler ([13fe142](https://github.com/wyre-technology/autotask-mcp/commit/13fe142082f04f95c2fefc6f48d51f485dab12b4)) Low3/3/2026
v2.9.0# [2.9.0](https://github.com/wyre-technology/autotask-mcp/compare/v2.8.1...v2.9.0) (2026-03-03) ### Bug Fixes * **mapping:** coalesce concurrent cache refreshes and fix fetch-all fallback ([ea08f80](https://github.com/wyre-technology/autotask-mcp/commit/ea08f80379898d10f1447a2399ab429151790756)) * **tests:** update expense item tests to match implemented API signatures ([7fac014](https://github.com/wyre-technology/autotask-mcp/commit/7fac014eedcbc27bf9753e719b042163e770f5ff)) ### Features Low3/3/2026
v2.8.1## [2.8.1](https://github.com/wyre-technology/autotask-mcp/compare/v2.8.0...v2.8.1) (2026-03-03) ### Bug Fixes * **cache:** solve thundering herd bug resolving company mapping limits ([ffa318a](https://github.com/wyre-technology/autotask-mcp/commit/ffa318a108455df1007eef46a3810764165444c4)) Low3/3/2026
v2.8.0# [2.8.0](https://github.com/asachs01/autotask-mcp/compare/v2.7.2...v2.8.0) (2026-02-13) ### Features * add product catalog and price list MCP tools ([#15](https://github.com/asachs01/autotask-mcp/issues/15)) ([04e3aac](https://github.com/asachs01/autotask-mcp/commit/04e3aaca5973974861c10e4cf1790ad7fccd15c4)) Low3/2/2026
v2.7.2## [2.7.2](https://github.com/asachs01/autotask-mcp/compare/v2.7.1...v2.7.2) (2026-02-10) ### Bug Fixes * use autotask-node v2.1.0 parent-child URL pattern for note/time entry creates ([6397094](https://github.com/asachs01/autotask-mcp/commit/6397094fad52f2afef72f0f92d4e523af65b1f1a)) Low2/10/2026
v2.7.1## [2.7.1](https://github.com/asachs01/autotask-mcp/compare/v2.7.0...v2.7.1) (2026-02-10) ### Bug Fixes * use correct parent-child URL patterns for child entity creation ([#24](https://github.com/asachs01/autotask-mcp/issues/24)) ([47f2a75](https://github.com/asachs01/autotask-mcp/commit/47f2a75b16de3af6b0f7581079f22fde575fe9d9)) Low2/10/2026
v2.7.0# [2.7.0](https://github.com/asachs01/autotask-mcp/compare/v2.6.1...v2.7.0) (2026-02-06) ### Features * **time-entries:** add approvalStatus filter for un-posted entries ([d27f0ab](https://github.com/asachs01/autotask-mcp/commit/d27f0ab1fe8ba169069e3fb7de7010ead4b26636)), closes [#21](https://github.com/asachs01/autotask-mcp/issues/21) Low2/6/2026
v2.6.1## [2.6.1](https://github.com/asachs01/autotask-mcp/compare/v2.6.0...v2.6.1) (2026-02-05) ### Bug Fixes * **security:** address code scanning vulnerabilities ([9fba187](https://github.com/asachs01/autotask-mcp/commit/9fba1879186a4c4c31482776a9a26152e163d7fe)) Low2/5/2026
v2.6.0# [2.6.0](https://github.com/asachs01/autotask-mcp/compare/v2.5.3...v2.6.0) (2026-02-05) ### Features * **billing:** Add BillingItems and BillingItemApprovalLevels support ([4c88034](https://github.com/asachs01/autotask-mcp/commit/4c880348d7a930b5277a810b89a3c54cddedb509)), closes [#21](https://github.com/asachs01/autotask-mcp/issues/21) Low2/5/2026
v2.5.3## Security Release This release addresses multiple security vulnerabilities identified by code scanning. ### Security Fixes | CVE | Package | Severity | Description | |-----|---------|----------|-------------| | CVE-2026-0621 | @modelcontextprotocol/sdk | HIGH | ReDoS vulnerability | | CVE-2025-66414 | @modelcontextprotocol/sdk | HIGH | DNS rebinding protection disabled | | CVE-2026-23950 | tar | HIGH | Arbitrary file overwrite via Unicode path collision | | CVE-2026-23745 | tar | HIGH | SymLow1/27/2026
v2.5.2## [2.5.2](https://github.com/asachs01/autotask-mcp/compare/v2.5.1...v2.5.2) (2026-01-24) ### Bug Fixes * **docs:** Use npx for Claude Code instructions instead of bundle extraction ([e5c7a01](https://github.com/asachs01/autotask-mcp/commit/e5c7a01937ba323ce2463c2ce3c9e9c6eae65bd3)) Low1/24/2026
v2.5.1## [2.5.1](https://github.com/asachs01/autotask-mcp/compare/v2.5.0...v2.5.1) (2026-01-24) ### Bug Fixes * **docs:** Add base path prefix to content links for GitHub Pages ([be4b661](https://github.com/asachs01/autotask-mcp/commit/be4b66172c2f000e09a8d887b051d4bd2bb8ad05)) Low1/24/2026
v2.5.0## Features * **docs:** Add Astro Starlight documentation site with prompt examples and GitHub Pages deployment - Getting Started guides (installation, configuration) - Prompt examples for all entity types (companies, tickets, projects, time, notes) - Tool reference (all 39 tools), resources reference, transport reference - Full-text search via Pagefind - Deployed at https://asachs01.github.io/autotask-mcp/ ## Code Refactoring * Simplify codebase with dispatch table, schema extractiLow1/24/2026
v2.4.0# [2.4.0](https://github.com/asachs01/autotask-mcp/compare/v2.3.4...v2.4.0) (2026-01-24) ### Features * **search:** Add compact response format, smart defaults, and pagination ([00aa4b9](https://github.com/asachs01/autotask-mcp/commit/00aa4b91e7329e833c60545d9d5e081f5a8f374c)) Low1/24/2026
v2.3.4## [2.3.4](https://github.com/asachs01/autotask-mcp/compare/v2.3.3...v2.3.4) (2026-01-24) ### Bug Fixes * **test:** Run all MCPB tests in single server session to avoid rate limits ([7b425cf](https://github.com/asachs01/autotask-mcp/commit/7b425cfbbba7a0ceeb0d6681dc84fb4a22ea421a)) Low1/24/2026
v2.3.3## [2.3.3](https://github.com/asachs01/autotask-mcp/compare/v2.3.2...v2.3.3) (2026-01-24) ### Bug Fixes * **mcpb:** Fix bundle runtime errors and add automated test harness ([c3beb22](https://github.com/asachs01/autotask-mcp/commit/c3beb221bdacf949aa543d846188ab1fb85639d2)) Low1/24/2026
v2.3.2## [2.3.2](https://github.com/asachs01/autotask-mcp/compare/v2.3.1...v2.3.2) (2026-01-23) ### Bug Fixes * **mcpb:** Add bundle signing, size reduction, and Claude Desktop compatibility ([89a4711](https://github.com/asachs01/autotask-mcp/commit/89a471172a7486f56aadffaa8881a7ff96c87930)) Low1/23/2026
v2.3.1## [2.3.1](https://github.com/asachs01/autotask-mcp/compare/v2.3.0...v2.3.1) (2026-01-23) ### Bug Fixes * **docker:** Fix build and runtime failures in Dockerfile ([c6e37e2](https://github.com/asachs01/autotask-mcp/commit/c6e37e266c1eccf531247bd6110bfc7e06f75819)) Low1/23/2026
v2.3.0# [2.3.0](https://github.com/asachs01/autotask-mcp/compare/v2.2.13...v2.3.0) (2026-01-23) ### Features * Add picklist discovery tools and elicitation support ([93c68f2](https://github.com/asachs01/autotask-mcp/commit/93c68f20acf31c0a8cc661689f820bf7e3518393)) Low1/23/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

website-design-systems-mcp๐ŸŽจ Extract complete design systems from websites and generate AI-ready skill.md files to replicate exact design elements efficiently.main@2026-06-02
justoneapi-mcpProduction-ready MCP server exposing JustOneAPI endpoints to AI agents with raw JSON responses.main@2026-06-06
smartlead-mcp-serverAutomate cold email campaigns effortlessly with SmartLead MCP Server. Integrate with AI tools for streamlined communication. ๐Ÿš€๐Ÿ’ปmain@2026-06-06
chromadb-remote-mcpRemote MCP server for ChromaDBv3.0.0
apiclawThe API layer for AI agents. Dashboard + 22K APIs + 18 Direct Call providers. MCP native.v2.8.6

More in MCP Servers

AstrBotAgentic IM Chatbot infrastructure that integrates lots of IM platforms, LLMs, plugins and AI feature, and can be your openclaw alternative. โœจ
agentscopeBuild and run agents you can see, understand and trust.
claude-plugins-officialOfficial, Anthropic-managed directory of high quality Claude Code Plugins.
langchain4jLangChain4j is an open-source Java library that simplifies the integration of LLMs into Java applications through a unified API, providing access to popular LLMs and vector databases. It makes impleme