ConnectWise Manage MCP Server

ConnectWise Manage MCP Server

A Model Context Protocol server that enables Claude to interact with the ConnectWise Manage API to perform operations like retrieving, creating, updating, and deleting tickets, companies, contacts, and other entities.

ethangillani

Customer Support
Visit Server

README

ConnectWise Manage MCP Server

A Model Context Protocol server that provides integration with the ConnectWise Manage API. This server enables Claude to interact with ConnectWise Manage to perform operations like retrieving tickets, companies, contacts, and more.

Features

  • Authentication with ConnectWise Manage API using API keys
  • Support for retrieving tickets, companies, contacts, and other entities
  • Ability to create, update, and delete entities
  • Filtering and pagination support for queries

Installation

Using NPM

npm install -g connectwise-mcp-server

Manual Setup

  1. Clone this repository
  2. Install dependencies with npm install
  3. Build the project with npm run build
  4. Start the server with npm start

Configuration

To use this MCP server, you'll need to provide ConnectWise Manage API credentials:

  • Company ID
  • Public Key
  • Private Key
  • ConnectWise Manage URL (e.g., api-na.myconnectwise.net)

Claude Desktop Configuration

Add the following to your Claude Desktop configuration file (typically located at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "connectwise": {
      "command": "npx",
      "args": ["-y", "connectwise-mcp-server"],
      "env": {
        "CW_COMPANY_ID": "your_company_id",
        "CW_PUBLIC_KEY": "your_public_key",
        "CW_PRIVATE_KEY": "your_private_key",
        "CW_URL": "api-na.myconnectwise.net"
      },
      "options": {
        "autoStart": true,
        "logLevel": "info"
      }
    }
  }
}

Available Functions

Search Tickets

Searches for service tickets in ConnectWise Manage.

cw_search_tickets(conditions, page_size, page)

Get Ticket

Retrieves a specific service ticket by ID.

cw_get_ticket(ticket_id)

Create Ticket

Creates a new service ticket.

cw_create_ticket(summary, description, board_id, company_id)

Search Companies

Searches for companies in ConnectWise Manage.

cw_search_companies(conditions, page_size, page)

Get Company

Retrieves a specific company by ID.

cw_get_company(company_id)

License

MIT

Recommended Servers

Jira-Context-MCP

Jira-Context-MCP

MCP server to provide Jira Tickets information to AI coding agents like Cursor

Featured
TypeScript
zendesk-mcp-server

zendesk-mcp-server

This server provides a comprehensive integration with Zendesk. Retrieving and managing tickets and comments. Ticket analyzes and response drafting. Access to help center articles as knowledge base.

Local
Python
GitHub Support Assistant

GitHub Support Assistant

Helps support engineers find similar GitHub issues to speed up troubleshooting by searching repositories and calculating similarity scores based on issue descriptions.

TypeScript
Brevo MCP

Brevo MCP

A TypeScript server enabling integration with the Brevo (Sendinblue) API for managing contacts, sending emails, and tracking email events in multi-channel applications like Claude Desktop.

TypeScript
SendGrid MCP Server

SendGrid MCP Server

Provides an interface to manage email marketing, contact lists, dynamic templates, and email analytics via SendGrid's API.

TypeScript
MCP Intercom Server

MCP Intercom Server

Provides access to Intercom conversations and chats through the Model Context Protocol, allowing LLMs to query and analyze Intercom conversations with various filtering options.

TypeScript
Redmine MCP Server

Redmine MCP Server

A Model Context Protocol server for interacting with Redmine using its REST API, enabling the management of tickets, projects, and user data through integration with LLMs.

TypeScript
PayPal MCP

PayPal MCP

This is an MCP server to manage PayPal

JavaScript
MCP Atlassian

MCP Atlassian

An MCP server that enables AI agents to interact with Atlassian products (Confluence and Jira) for content management, issue tracking, and project management through a standardized interface.

TypeScript