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).
Prerequisites
Section titled “Prerequisites”- Claude Desktop installed.
- An API Key and
X-Platform-User-Idobtained (same as for REST calls). - MCP endpoint:
https://api.uumit.com/mcp/sse(SSE).
Edit Configuration File
Section titled “Edit Configuration File”Open the Claude Desktop MCP configuration file based on your operating system:
| OS | Path |
|---|---|
| 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.
Restart Claude Desktop
Section titled “Restart Claude Desktop”After saving, fully quit Claude Desktop and reopen it to reload the MCP configuration and tool list.
Verification
Section titled “Verification”In a new conversation, ask Claude to use UUMit / uuagent tools, for example:
- Use
uuagent_discoverto list capabilities related to “API integration”. - Use
uuagent_searchto search for capabilities matching a natural language description.
If the tool call returns structured data successfully, the integration is working.
Security Tips
Section titled “Security Tips”- Do not commit configuration files containing real Keys to Git or share them publicly.
X-Platform-User-Idmust 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).