Intelliverse

MCP server

Drive the whole platform from your coding agent with @intelliverse/router-mcp.

Everything in these docs works from your coding agent. Add the intelliverse-router MCP server (Cursor, Claude, or any MCP client) and your agent can create App IDs, mint API keys, ingest and search knowledge bases, generate media, and chat — all through management-key-scoped tools.

Install

.cursor/mcp.json
{
  "mcpServers": {
    "intelliverse-router": {
      "command": "npx",
      "args": ["-y", "@intelliverse/router-mcp"],
      "env": {
        "ROUTER_API_KEY": "iv-r-v1-...",
        "ROUTER_MANAGEMENT_KEY": "ivm-...",
        "ROUTER_WORKSPACE_ID": "your-workspace-uuid"
      }
    }
  }
}
Then, in chat
"Create an app called Support Bot for chat + RAG, mint a pro key for it,
 ingest https://docs.myapp.com into its knowledge base, and ask it how refunds work."

Available tools

  • create_app — provision an App ID (isolated memory, wallet, keys).
  • create_api_key — mint a tier-scoped API key for an app.
  • kb_ingest / kb_search / kb_chat— manage the app's knowledge base.
  • generate_media — run media jobs.
  • get_credits — check balances.
  • chat — send chat completions.

Credentials

Get the server and the paired skill from the dashboard under Account → Management Keys. The management key is a control-plane credential — see key types.

Warning

Management keys can mint API keys and change guardrails. Scope them to CI/agent use, rotate on leak, and never commit them to git.
Did this doc help you?
Help us improve these docs