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.
npm install -g connectwise-mcp-server
npm install
npm run build
npm start
To use this MCP server, you'll need to provide ConnectWise Manage API credentials:
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"
}
}
}
}
Searches for service tickets in ConnectWise Manage.
cw_search_tickets(conditions, page_size, page)
Retrieves a specific service ticket by ID.
cw_get_ticket(ticket_id)
Creates a new service ticket.
cw_create_ticket(summary, description, board_id, company_id)
Searches for companies in ConnectWise Manage.
cw_search_companies(conditions, page_size, page)
Retrieves a specific company by ID.
cw_get_company(company_id)
MIT
Seamless access to top MCP servers powering the future of AI integration.