{
  "markdown": "# @adorbistech/mcp-server\n\n<div align=\"center\">\n\n**Adorbis AI MCP Server**\n\nOne API key. 40+ models. Auto-routed.\nUse Adorbis AI from Claude Code, Cursor, Cline, and any MCP-compatible tool.\n\n[![npm version](https://img.shields.io/npm/v/@adorbistech/mcp-server?color=1e9ad6&label=npm)](https://www.npmjs.com/package/@adorbistech/mcp-server)\n[![license](https://img.shields.io/npm/l/@adorbistech/mcp-server?color=d2bbff)](LICENSE)\n[![node](https://img.shields.io/node/v/@adorbistech/mcp-server?color=4be257)](https://nodejs.org)\n\n[Get a free API key](https://ai.adorbistech.com) · [Documentation](https://ai.adorbistech.com/docs) · [Dashboard](https://ai.adorbistech.com/dashboard)\n\n</div>\n\n---\n\n## Install\n\n### Option 1 — Clone and run locally (recommended, works on all platforms)\n\n```bash\ngit clone https://github.com/adorbistech/adorbis-mcp\ncd adorbis-mcp\nnpm install\nnpm run build\n```\n\nThen point your tool to `node /path/to/adorbis-mcp/dist/index.js`.\n\n---\n\n### Claude Code\n\nAdd to `~/.claude.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"adorbis\": {\n      \"command\": \"node\",\n      \"args\": [\"/path/to/adorbis-mcp/dist/index.js\"],\n      \"env\": {\n        \"ADORBIS_API_KEY\": \"your_key_here\"\n      }\n    }\n  }\n}\n```\n\n**Windows path example:**\n```json\n\"args\": [\"D:\\\\Ai-Adorbis\\\\MCP\\\\dist\\\\index.js\"]\n```\n\n**Mac/Linux path example:**\n```json\n\"args\": [\"/home/user/adorbis-mcp/dist/index.js\"]\n```\n\n---\n\n### Cursor\n\nAdd to `~/.cursor/mcp.json`:\n\n```json\n{\n  \"mcpServers\": {\n    \"adorbis\": {\n      \"command\": \"node\",\n      \"args\": [\"/path/to/adorbis-mcp/dist/index.js\"],\n      \"env\": {\n        \"ADORBIS_API_KEY\": \"your_key_here\"\n      }\n    }\n  }\n}\n```\n\n---\n\n### Cline (VS Code)\n\nAdd to Cline MCP settings:\n\n```json\n{\n  \"adorbis\": {\n    \"command\": \"node\",\n    \"args\": [\"/path/to/adorbis-mcp/dist/index.js\"],\n    \"env\": {\n      \"ADORBIS_API_KEY\": \"your_key_here\"\n    }\n  }\n}\n```\n\n---\n\n### Option 2 — npx (Mac/Linux only)\n\n```bash\n# Mac/Linux\nADORBIS_API_KEY=your_key npx @adorbistech/mcp-server\n```\n\n> **Note:** `npx` install is not recommended on Windows due to path resolution issues. Use the clone method above.\n\n---\n\n### Auto-configure with CLI\n\n```bash\nnpx adorbis-init --mcps\n```\n\nAutomatically writes the correct MCP config for every tool you have configured.\n\n---\n\n## Available Tools\n\nOnce connected, your AI assistant has access to 7 tools:\n\n| Tool | Description |\n|---|---|\n| `adorbis_chat` | General AI chat — auto-routes to best model |\n| `adorbis_code` | Code generation, debugging, review |\n| `adorbis_reason` | Math, logic, multi-step analysis |\n| `adorbis_write` | Documentation, articles, emails |\n| `adorbis_balance` | Check connection and credit status |\n| `adorbis_models` | List all available departments |\n| `adorbis_multi_turn` | Multi-turn conversation with history |\n\n### Usage examples\n\n```\nCheck my Adorbis balance\n```\n```\nUse adorbis_code to write a TypeScript debounce function\n```\n```\nWhat Adorbis departments are available?\n```\n```\nUse adorbis_reason to analyze the time complexity of merge sort\n```\n\n---\n\n## Departments\n\n| Department | Best for | Speed |\n|---|---|---|\n| `adorbis/quick` | Chat, Q&A, simple tasks | Fastest |\n| `adorbis/coder` | Code generation, debugging, review | Fast |\n| `adorbis/auto` | Mixed workloads, smart routing | Varies |\n| `adorbis/write` | Documentation, articles, emails | Medium |\n| `adorbis/reason` | Math, logic, complex analysis | Thorough |\n\n---\n\n## How Adorbis AI works\n\n```\nYour tool (Claude Code / Cursor / Cline)\n              │\n              ▼ MCP call\n  @adorbistech/mcp-server\n              │\n              ▼ HTTPS\n   api.adorbistech.com  ←── your single API key\n              │\n      ┌───────┴────────┐\n      │   Department   │\n      │    routing     │\n      └───────┬────────┘\n              │\n    ┌─────────┼──────────┐\n    ▼         ▼          ▼\n Gemini   DeepSeek   Claude\n Flash      V3       Sonnet\n              │\n              ▼\n         Best model\n         for your task\n```\n\nAdorbis monitors model health, latency, and cost in real time. When you send a request, it routes to the best available model automatically. No manual model switching. No vendor lock-in.\n\n---\n\n## Environment Variables\n\n| Variable | Required | Description |\n|---|---|---|\n| `ADORBIS_API_KEY` | Yes | Your Adorbis API key |\n\nGet a free key (1,000 credits/month, no credit card) at **https://ai.adorbistech.com**\n\n---\n\n## Plans\n\n| Plan | Price | Credits |\n|---|---|---|\n| Free | $0/mo | 1,000 AC |\n| Starter | $10/mo | 15,000 AC |\n| Pro | $30/mo | 50,000 AC |\n| Business | $100/mo | 200,000 AC |\n\n1 AC = $0.001 of underlying compute. [Upgrade →](https://ai.adorbistech.com/dashboard)\n\n---\n\n## Also available\n\n- **VS Code Extension** — `ext install adorbis.adorbis-ai`\n- **CLI setup wizard** — `npx adorbis-init`\n- **Full docs** — [ai.adorbistech.com/docs](https://ai.adorbistech.com/docs)\n\n---\n\n## Requirements\n\n- Node.js >= 18\n- An Adorbis API key — [get one free](https://ai.adorbistech.com)\n\n---\n\n## Contributing\n\nIssues and PRs welcome at [github.com/adorbistech/adorbis-mcp](https://github.com/adorbistech/adorbis-mcp)\n\n---\n\n## License\n\nMIT © [Adorbis Technologies LLC](https://ai.adorbistech.com)\n",
  "bytes": 5149,
  "sha": "e7a977b063fed455fed0459d12bb1badeee288f2169539fd7f98b3766158abaf",
  "repo_slug": "adorbistech/adorbis-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_adorbistech_adorbis_mcp_f814025c/readme"
}