{
  "markdown": "# Intelliverse Router MCP server + Agent Skills\n\nRun the whole [Intelliverse platform](https://router.intelli-verse-x.ai) from any\nMCP-capable agent: create App IDs, mint tier API keys, ingest and search per-app\nknowledge bases, send email, generate media, check credits, and chat — without\never naming an LLM.\n\n```bash\nnpx -y github:intelli-verse-x/router-mcp\n```\n\nVerified 2026-07-12: `initialize` + `tools/list` over stdio, 15 tools.\nFull setup guide with copy-paste configs: <https://router.intelli-verse-x.ai/skills>\n\n## Tools (15)\n\n| Tool | Auth | What it does |\n|---|---|---|\n| `chat` | API key | Chat completion; `model` optional (Intelliverse default routes at your plan tier) |\n| `list_models` | API key | Tier aliases your key can call |\n| `get_credits` | API key | LLM daily budget + per-App-ID media credit wallets |\n| `create_app` / `list_apps` | management | App IDs — entry point for KB, wallets, per-app costs |\n| `create_api_key` / `list_api_keys` / `revoke_api_key` | management | Tier-gated key administration |\n| `kb_ingest` / `kb_search` / `kb_chat` / `kb_documents` | API key | App-scoped pgvector knowledge base |\n| `send_email` | API key | Per-App-ID email via the platform engine (Pro+, `email.send10` SKU, hold → settle) |\n| `generate_media` / `media_job_status` | API key | Credit-metered image/video/voice/audio/3D jobs |\n\nEnv vars: `ROUTER_API_KEY` (Workspace → API Keys), `ROUTER_MANAGEMENT_KEY`\n(Account → Management Keys; needed for app/key admin tools),\n`ROUTER_WORKSPACE_ID` (default workspace for admin tools). Optional overrides:\n`EDGE_BASE_URL`, `KB_BASE_URL`. Keys are free —\n[sign up](https://router.intelli-verse-x.ai), no card.\n\n## Install per platform\n\nThe JSON body is identical everywhere; only the file location / wrapper differs.\n\n### Cursor\n\nOne-click: [Add to Cursor](cursor://anysphere.cursor-deeplink/mcp/install?name=intelliverse-router&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImdpdGh1YjppbnRlbGxpLXZlcnNlLXgvcm91dGVyLW1jcCJdLCJlbnYiOnsiUk9VVEVSX0FQSV9LRVkiOiIiLCJST1VURVJfTUFOQUdFTUVOVF9LRVkiOiIiLCJST1VURVJfV09SS1NQQUNFX0lEIjoiIn19)\n— or `.cursor/mcp.json` (project) / `~/.cursor/mcp.json` (global):\n\n```json\n{\n  \"mcpServers\": {\n    \"intelliverse-router\": {\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"github:intelli-verse-x/router-mcp\"],\n      \"env\": {\n        \"ROUTER_API_KEY\": \"iv-r-v1-...\",\n        \"ROUTER_MANAGEMENT_KEY\": \"ivm-...\",\n        \"ROUTER_WORKSPACE_ID\": \"your-workspace-uuid\"\n      }\n    }\n  }\n}\n```\n\n### Claude Desktop\n\nSame JSON as Cursor, in `claude_desktop_config.json`\n(macOS: `~/Library/Application Support/Claude/`, Windows: `%APPDATA%\\Claude\\`).\n\n### Claude Code\n\n```bash\nclaude mcp add intelliverse-router \\\n  --env ROUTER_API_KEY=iv-r-v1-... \\\n  --env ROUTER_MANAGEMENT_KEY=ivm-... \\\n  --env ROUTER_WORKSPACE_ID=your-workspace-uuid \\\n  -- npx -y github:intelli-verse-x/router-mcp\n```\n\n### VS Code (GitHub Copilot)\n\n`.vscode/mcp.json`:\n\n```json\n{\n  \"servers\": {\n    \"intelliverse-router\": {\n      \"type\": \"stdio\",\n      \"command\": \"npx\",\n      \"args\": [\"-y\", \"github:intelli-verse-x/router-mcp\"],\n      \"env\": {\n        \"ROUTER_API_KEY\": \"iv-r-v1-...\",\n        \"ROUTER_MANAGEMENT_KEY\": \"ivm-...\",\n        \"ROUTER_WORKSPACE_ID\": \"your-workspace-uuid\"\n      }\n    }\n  }\n}\n```\n\n### Windsurf\n\nSame JSON as Cursor, in `~/.codeium/windsurf/mcp_config.json`.\n\n### Cline\n\nSame JSON as Cursor, via the MCP Servers panel → Configure MCP Servers\n(`cline_mcp_settings.json`).\n\n### Continue\n\n`~/.continue/config.yaml`:\n\n```yaml\nmcpServers:\n  - name: intelliverse-router\n    command: npx\n    args: [\"-y\", \"github:intelli-verse-x/router-mcp\"]\n    env:\n      ROUTER_API_KEY: iv-r-v1-...\n      ROUTER_MANAGEMENT_KEY: ivm-...\n      ROUTER_WORKSPACE_ID: your-workspace-uuid\n```\n\n### OpenAI Codex CLI\n\n```bash\ncodex mcp add intelliverse-router \\\n  --env ROUTER_API_KEY=iv-r-v1-... \\\n  --env ROUTER_MANAGEMENT_KEY=ivm-... \\\n  --env ROUTER_WORKSPACE_ID=your-workspace-uuid \\\n  -- npx -y github:intelli-verse-x/router-mcp\n```\n\n### ChatGPT\n\nChatGPT developer-mode apps connect only to *remote* MCP servers over HTTPS;\nthis server is stdio-only today, so there is no ChatGPT path yet (hosted\nstreamable-HTTP endpoint is on the roadmap). In the OpenAI ecosystem use the\nCodex CLI above.\n\n## Agent Skills\n\n`skills/` ships SKILL.md playbooks that drive these tools end-to-end — copy them\ninto your agent's skills folder (`~/.cursor/skills/` for Cursor,\n`~/.claude/skills/` for Claude Code):\n\n| Skill | What it does |\n|---|---|\n| `intelliverse-router` | Platform wiring — the 60-second create_app → key → KB loop |\n| `nl-app-builder` | Scaffold web/mobile apps wired to an App ID |\n| `scaffold-game` | Honest-scope Nakama game-backend stubs |\n| `deploy-desktop` | Electron/Tauri desktop apps delegating to IVX Agency |\n| `conversational-avatar` | Real-time voice + lip-sync avatars over LiveKit |\n\n```bash\ngit clone https://github.com/intelli-verse-x/router-mcp\ncp -r router-mcp/skills/* ~/.cursor/skills/   # or ~/.claude/skills/\n```\n\n## The 60-second loop\n\n1. `create_app` — describe your app; get an App ID and recommended tier.\n2. `create_api_key` — mint a key bound to that app.\n3. `kb_ingest` — feed it docs or URLs.\n4. `chat` / `kb_chat` — start building. No model names, ever.\n5. `send_email` — tell your users it's live.\n\n## Development\n\n```bash\nnpm install && npm run build && node dist/index.js\n```\n\n`server.json` at the repo root is the payload published to the official\n[MCP Registry](https://registry.modelcontextprotocol.io) as\n`io.github.intelli-verse-x/router-mcp` (MCPB bundle from the GitHub release).\n",
  "bytes": 5580,
  "sha": "e3c2367c576928b87a70eb2f80d2d2eed2929fe8cdb0482df44023d1984ce316",
  "repo_slug": "intelli-verse-x/router-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_intelli_verse_x_router_mcp_f62d1b11/readme"
}