CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

ConnectWise Manage

wyre-technology/connectwise-manage-mcp
7authSTDIOregistry active
Summary

This connects Claude directly to ConnectWise Manage's REST API with 34 tools covering service tickets, companies, contacts, projects, time entries, and configuration items. You can search and update tickets, log billable time, create activities, and pull contact info through conversation instead of clicking through the CWM interface. Works with both cloud and self-hosted instances, and the gateway mode supports multi-tenant deployments where credentials come through HTTP headers. Part of a broader MSP tooling ecosystem that includes Autotask, Datto RMM, IT Glue, and NinjaOne integrations. If you're running an MSP shop on ConnectWise and want to automate ticket triage or time logging workflows with an AI agent, this is the connector you need.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

ConnectWise Manage MCP Server

License Node.js

Let your AI assistant work directly with ConnectWise Manage. Search tickets, log time, look up companies and contacts, manage projects — through natural conversation instead of clicking through the CWM interface.

This is a Model Context Protocol (MCP) server that gives Claude (or any MCP-compatible AI) 51 tools covering the daily operations ConnectWise Manage shops depend on. Works with both cloud-hosted and self-hosted CWM instances — just point it at your server.

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

One-Click Deployment

Deploy to DO

Deploy to Cloudflare Workers

Note on registry auth: This server depends only on public npm packages, so the Cloudflare and DigitalOcean cloud builders install its dependencies anonymously — no token is required for one-click deploy. (If a future release adds a private @wyre-technology/* dependency, you would supply a GitHub PAT with read:packages as a build variable — NODE_AUTH_TOKEN for Cloudflare Workers, a build-time GITHUB_TOKEN secret for DigitalOcean.)

Installing the published package: The released package is published to the GitHub Packages npm registry, which requires authentication on every install (even for public packages). To install it, authenticate npm to npm.pkg.github.com with a GitHub PAT that has read:packages:

export NODE_AUTH_TOKEN=$(gh auth token)
npm install @wyre-technology/connectwise-manage-mcp

For deploying to Azure Container Apps with Entra ID OAuth 2.1, see AZURE_ACA_DEPLOYMENT.md.

Configuration

Environment Variables

VariableRequiredDescription
CW_MANAGE_COMPANY_IDYesYour ConnectWise company identifier
CW_MANAGE_PUBLIC_KEYYesAPI member public key
CW_MANAGE_PRIVATE_KEYYesAPI member private key
CW_MANAGE_CLIENT_IDYesClient ID from ConnectWise Developer Portal
CW_MANAGE_URLNoAPI base URL (see below)
CW_MANAGE_REJECT_UNAUTHORIZEDNoSet to false for self-signed certs (default: true)
MCP_TRANSPORTNostdio (default) or http
MCP_HTTP_PORTNoHTTP port (default: 8080)
AUTH_MODENoenv (default) or gateway for header-based auth

API Base URL (CW_MANAGE_URL)

Instance TypeURL
Cloud (North America)https://api-na.myconnectwise.net (default)
Cloud (Europe)https://api-eu.myconnectwise.net
Cloud (Australia)https://api-au.myconnectwise.net
Self-hostedhttps://cwm.yourcompany.com

For self-hosted instances, set CW_MANAGE_URL to your server's base URL. The server automatically appends /v4_6_release/apis/3.0 unless the URL already contains that path.

If your self-hosted instance uses a self-signed certificate, also set CW_MANAGE_REJECT_UNAUTHORIZED=false.

Getting Your API Keys

  1. Log in to your ConnectWise Manage instance
  2. Navigate to System > Members > API Members
  3. Create a new API member with appropriate permissions
  4. Generate API keys for the member
  5. Get your Client ID from the ConnectWise Developer Portal

Available Tools

Tickets

  • cw_search_tickets — Search service tickets with conditions
  • cw_get_ticket — Get a ticket by ID
  • cw_create_ticket — Create a new service ticket
  • cw_update_ticket — Update a ticket (JSON Patch)
  • cw_get_ticket_notes — Get all notes on a ticket (including child ticket notes)
  • cw_add_ticket_note — Add a note to a ticket (discussion, internal, or resolution)

Companies

  • cw_search_companies — Search companies
  • cw_get_company — Get a company by ID
  • cw_create_company — Create a new company
  • cw_update_company — Update a company (JSON Patch)

Contacts

  • cw_search_contacts — Search contacts
  • cw_get_contact — Get a contact by ID
  • cw_create_contact — Create a new contact

Projects

  • cw_search_projects — Search projects
  • cw_get_project — Get a project by ID
  • cw_create_project — Create a new project
  • cw_search_project_tickets — Search tickets under a project
  • cw_get_project_ticket — Get a specific project ticket by ID
  • cw_get_project_ticket_notes — Get all notes on a project ticket (including child ticket notes)
  • cw_add_project_ticket_note — Add a note to a project ticket (discussion, internal, or resolution)

Time Entries

  • cw_search_time_entries — Search time entries
  • cw_get_time_entry — Get a time entry by ID
  • cw_create_time_entry — Create a new time entry

Members

  • cw_search_members — Search members/technicians
  • cw_get_member — Get a member by ID

Configuration Items

  • cw_search_configurations — Search configuration items (assets)
  • cw_get_configuration — Get a configuration item by ID

Service Reference Data

  • cw_list_boards — List service boards
  • cw_list_priorities — List ticket priorities
  • cw_list_statuses — List statuses for a board

Activities

  • cw_search_activities — Search activities
  • cw_get_activity — Get an activity by ID
  • cw_create_activity — Create a new activity

Agreements

  • cw_search_agreements — Search agreements
  • cw_get_agreement — Get an agreement by ID
  • cw_get_agreement_additions — Get additions (line items) on an agreement

Invoices

  • cw_search_invoices — Search invoices
  • cw_get_invoice — Get an invoice by ID

Opportunities

  • cw_search_opportunities — Search opportunities
  • cw_get_opportunity — Get an opportunity by ID
  • cw_search_opportunity_forecasts — Search opportunity forecast lines
  • cw_search_opportunity_notes — Search notes on an opportunity
  • cw_search_sales_stages — List sales pipeline stages

Catalog (Products)

  • cw_search_catalog_items — Search product catalog items
  • cw_get_catalog_item — Get a catalog item by ID
  • cw_create_catalog_item — Create a new catalog item
  • cw_update_catalog_item — Update a catalog item (JSON Patch)
  • cw_list_catalog_categories — List catalog categories
  • cw_list_catalog_subcategories — List catalog subcategories
  • cw_list_manufacturers — List manufacturers

Health

  • cw_test_connection — Test connection (hits /system/info)

Usage

With Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "connectwise-manage": {
      "command": "npx",
      "args": ["@wyre-technology/connectwise-manage-mcp"],
      "env": {
        "CW_MANAGE_COMPANY_ID": "your-company-id",
        "CW_MANAGE_PUBLIC_KEY": "your-public-key",
        "CW_MANAGE_PRIVATE_KEY": "your-private-key",
        "CW_MANAGE_CLIENT_ID": "your-client-id"
      }
    }
  }
}

For a self-hosted instance:

{
  "mcpServers": {
    "connectwise-manage": {
      "command": "npx",
      "args": ["@wyre-technology/connectwise-manage-mcp"],
      "env": {
        "CW_MANAGE_URL": "https://cwm.yourcompany.com",
        "CW_MANAGE_COMPANY_ID": "your-company-id",
        "CW_MANAGE_PUBLIC_KEY": "your-public-key",
        "CW_MANAGE_PRIVATE_KEY": "your-private-key",
        "CW_MANAGE_CLIENT_ID": "your-client-id",
        "CW_MANAGE_REJECT_UNAUTHORIZED": "false"
      }
    }
  }
}

With Docker

docker compose up -d

HTTP Transport (Gateway Mode)

Run with HTTP transport for multi-tenant gateway deployments:

MCP_TRANSPORT=http AUTH_MODE=gateway node dist/index.js

Pass credentials per-request via headers: X-CW-Company-Id, X-CW-Public-Key, X-CW-Private-Key, X-CW-Client-Id, and optionally X-CW-URL.

Development

# Install dependencies
npm install

# Build
npm run build

# Run in development
npm run dev

# Type check
npm run typecheck

# Run tests
npm test

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

License

Apache-2.0


Built by WYRE Technology — part of the MSP Claude Plugins ecosystem

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Configuration

CW_MANAGE_COMPANY_ID*

ConnectWise company identifier (the short name used to log in)

CW_MANAGE_PUBLIC_KEY*secret

ConnectWise API member public key (Members > API Members)

CW_MANAGE_PRIVATE_KEY*secret

ConnectWise API member private key

CW_MANAGE_CLIENT_ID*secret

Client ID from the ConnectWise Developer Portal (developer.connectwise.com)

CW_MANAGE_URLdefault: https://api-na.myconnectwise.net

ConnectWise API base URL — region-specific (api-na/eu/au.myconnectwise.net) or self-hosted

MCP_TRANSPORTdefault: stdio

Transport mode for the server. Set to 'stdio' for local CLI use; the image defaults to 'http' for gateway hosting.

AUTH_MODEdefault: env

Credential source: 'env' reads vars locally, 'gateway' expects header injection from the WYRE MCP Gateway.

LOG_LEVELdefault: info

Log verbosity: debug, info, warn, error

Registryactive
Packageghcr.io/wyre-technology/connectwise-manage-mcp:v1.7.0
TransportSTDIO
AuthRequired
UpdatedJun 2, 2026
View on GitHub