MCP is live.Set upAsk on Discord
OmniDimension

Claude Code

Connect OmniDimension to Claude Code in one terminal command. OAuth sign-in via the browser, then use OmniDimension tools from any Claude Code session.

One command:

claude mcp add --transport http omnidim https://mcp.omnidim.io/mcp --scope user

Then, inside Claude Code:

/mcp

A browser tab opens to the OmniDimension consent screen. Sign in, click Allow, and the connection is live.

Verify

Back in Claude Code, ask:

What OmniDimension agents do I have?

Claude Code will call listAgents and report your agent list. If you see your agents, you're set.

API key instead of OAuth

For headless or CI use, run the local stdio server with an API key from omnidim.io/api-management:

claude mcp add omnidim-local -e OMNIDIM_API_KEY=sk_xxx -- npx -y @omnidim-ai/mcp-server

What --scope user does

--scope user writes the server config to your user-level ~/.claude.json instead of the per-project file. The OmniDimension connector then shows up in every Claude Code session, regardless of which directory you started it from. Drop the flag if you only want it in the current project.

Remove

claude mcp remove omnidim --scope user

This deletes the local config. To also revoke the OAuth token on the server side, remove the corresponding credential at omnidim.io/api-management.

On this page