drio
Open app

ConnectWise API Gateway MCP Server

Source

ConnectWise Manage API Gateway MCP Server for Claude

Catalog onlyCatalog onlySTDIO

Overview

CWM-API-Gateway-MCP is a server designed to facilitate communication with the ConnectWise Manage API, specifically tailored for integration with Claude.

To use the CWM-API-Gateway-MCP, set up the server and configure it to connect with your ConnectWise Manage account. Follow the documentation provided in the GitHub repository for detailed setup instructions.

  • Seamless integration with ConnectWise Manage API - Customizable server settings for specific use cases - Support for various API requests and responses
  1. Automating tasks within ConnectWise Manage.
  2. Integrating third-party applications with ConnectWise Manage.
  3. Enhancing workflow efficiency by utilizing API capabilities.

Add to your AI client

Use these steps to connect ConnectWise API Gateway 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-api-gateway-mcp-jasondsmith72": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cwm-api-gateway-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-api-gateway-mcp-jasondsmith72": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cwm-api-gateway-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-api-gateway-mcp-jasondsmith72": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cwm-api-gateway-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-api-gateway-mcp-jasondsmith72": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cwm-api-gateway-mcp-jasondsmith72"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "cwm-api-gateway-mcp-jasondsmith72": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cwm-api-gateway-mcp-jasondsmith72"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "cwm-api-gateway-mcp-jasondsmith72": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-cwm-api-gateway-mcp-jasondsmith72"
      ]
    }
  }
}

FAQ

What is the purpose of this API Gateway?

The API Gateway serves as a bridge between your applications and the ConnectWise Manage API, simplifying the integration process.

Is there any documentation available?

Yes, comprehensive documentation is available in the GitHub repository.

Can I customize the server settings?

Yes, the server settings can be customized to fit your specific integration needs.