Home/Motion MCP Proxy
motion.dev
Motion

Motion+ MCP Proxy

Use the Motion+ MCP Server via the proxy (streamable HTTP) — no upstream subscription credentials needed

Endpoint

All MCP clients connect to this address, using the distributed key as the Bearer credential.

text
https://proxy.collectui.pro/api/motion-plus-mcp

Configure MCP client

Motion+ MCP is streamable HTTP. Add the config below to your client,YOUR_KEY with your distributed key (prefix motion_mcp_)

.mcp.json(Cursor / VS Code / Claude Desktop)

json
{
  "mcpServers": {
    "motion-plus": {
      "url": "https://proxy.collectui.pro/api/motion-plus-mcp",
      "headers": {
        "Authorization": "Bearer <YOUR_KEY>"
      }
    }
  }
}

Claude Code

bash
claude mcp add --transport http motion-plus https://proxy.collectui.pro/api/motion-plus-mcp --scope user -H "Authorization: Bearer <YOUR_KEY>"

Codex CLI

toml
# ~/.codex/config.toml
[mcp_servers.motion-plus]
enabled = true
url = "https://proxy.collectui.pro/api/motion-plus-mcp"
http_headers = { Authorization = "Bearer <YOUR_KEY>" }
Replace the YOUR_KEY placeholder with your distributed Motion+ MCP key. Once configured, you can use Motion's search-motion-docs tools.

FAQ

How do I get a key?

Contact CollectUI to get a Motion+ MCP key (prefix motion_mcp_). One key can be used across multiple clients.

What if I get a 503 (upstream auth expired)?

It means the upstream Motion authorization needs renewal, handled by ops — no action needed from you; retry later.