ConnectWise Manage MCP Server
Model Context Protocol (MCP) server for ConnectWise Manage API
Overview
CWM-MCP is a Model Context Protocol (MCP) server designed for the ConnectWise Manage API, enabling seamless integration and interaction with ConnectWise Manage data.
To use CWM-MCP, clone the repository, install the required dependencies, configure your environment variables, and start the server. You can then make API calls to interact with ConnectWise Manage.
- Implements Model Context Protocol for API access - Supports various operations like creating contexts, connecting to ConnectWise Manage, and executing commands - Provides a RESTful API interface for easy integration
- Automating ticket management in ConnectWise Manage
- Integrating ConnectWise Manage data with other applications
- Executing custom commands for data retrieval and manipulation
Add to your AI client
Use these steps to connect ConnectWise Manage MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"cwm-mcp-jasondsmith72": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cwm-mcp-jasondsmith72"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"cwm-mcp-jasondsmith72": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cwm-mcp-jasondsmith72"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"cwm-mcp-jasondsmith72": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cwm-mcp-jasondsmith72"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"cwm-mcp-jasondsmith72": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cwm-mcp-jasondsmith72"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"cwm-mcp-jasondsmith72": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cwm-mcp-jasondsmith72"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"cwm-mcp-jasondsmith72": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-cwm-mcp-jasondsmith72"
]
}
}
}FAQ
What are the prerequisites for using CWM-MCP?
You need Node.js, PowerShell, and ConnectWise Manage API credentials.
How do I start the server?
Run `npm start` or execute the included batch file.
Can I customize the API commands?
Yes! You can execute custom commands by sending requests to the appropriate endpoints.