Skip to content

Claude Desktop Integration

This guide explains how to configure the UUMit MCP server in the Claude Desktop client, enabling Claude to invoke platform-provided tools (sharing the same SSE endpoint as Cursor and other clients).

  • Claude Desktop installed.
  • An API Key and X-Platform-User-Id obtained (same as for REST calls).
  • MCP endpoint: https://api.uumit.com/mcp/sse (SSE).

Open the Claude Desktop MCP configuration file based on your operating system:

OSPath
macOS~/Library/Application Support/Claude/claude_desktop_config.json
Windows%APPDATA%\Claude\claude_desktop_config.json

Add a uuagent entry under mcpServers (replace placeholders):

{
"mcpServers": {
"uuagent": {
"url": "https://api.uumit.com/mcp/sse",
"headers": {
"X-Api-Key": "your_api_key",
"X-Platform-User-Id": "your_user_id"
}
}
}
}

If the file already contains other mcpServers entries, merge uuagent into the same object — mind JSON commas and bracket matching.

After saving, fully quit Claude Desktop and reopen it to reload the MCP configuration and tool list.

In a new conversation, ask Claude to use UUMit / uuagent tools, for example:

  • Use uuagent_discover to list capabilities related to “API integration”.
  • Use uuagent_search to search for capabilities matching a natural language description.

If the tool call returns structured data successfully, the integration is working.

  • Do not commit configuration files containing real Keys to Git or share them publicly.
  • X-Platform-User-Id must match the user bound to this Key — do not expose the full key in prompts.

For the detailed tool list and troubleshooting, refer to the Available Tools and Troubleshooting sections in Cursor MCP Integration (configuration is similar for both clients).