Claude Code
HTTPConnect directly, then restart the client so it discovers Orbicue's tools.
claude mcp add --scope user --transport http orbicue \
https://orbicue.com/mcp \
--header "Mcp-Client-Id: YOUR_CLIENT_ID"Orbicue exposes a Streamable HTTP MCP endpoint. Give a compatible client your endpoint and MCP Client ID, then verify tool discovery.
https://orbicue.com/mcpUse the Mcp-Client-Id request header whenever your client supports custom headers.
Open an Orbicue workspace and copy the MCP Client ID shown in the sidebar.
Prefer user-level configuration so the credential never lands inside a project repository.
Connect directly, then restart the client so it discovers Orbicue's tools.
claude mcp add --scope user --transport http orbicue \
https://orbicue.com/mcp \
--header "Mcp-Client-Id: YOUR_CLIENT_ID"Add a remote MCP server with the endpoint and header below. Prefer Cursor's user-level MCP settings.
{
"mcpServers": {
"orbicue": {
"url": "https://orbicue.com/mcp",
"headers": {
"Mcp-Client-Id": "YOUR_CLIENT_ID"
}
}
}
}Claude Desktop uses stdio, so Node.js and the mcp-remote bridge are required.
{
"mcpServers": {
"orbicue": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://orbicue.com/mcp",
"--header", "Mcp-Client-Id:YOUR_CLIENT_ID"
]
}
}
}Test the server directly before debugging client configuration.
curl -sS -X POST "https://orbicue.com/mcp" \
-H "Content-Type: application/json" \
-H "Mcp-Client-Id: YOUR_CLIENT_ID" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'A successful JSON-RPC response includes a result.tools array. Restart your client after configuration so it runs discovery again.
The response usually tells you which layer needs attention.
npx.cmd on Windows.Keep destructive tools such as task deletion behind manual approval. MCP actions use the same project access as your Orbicue identity.
Open Orbicue, copy your MCP Client ID, and keep the setup page beside your client configuration.