MCP Server Setup Guide
Give any MCP client live access to Inferio: search the model catalog, check pricing, and chat with any model.
Overview
Inferio speaks OpenAI /v1. Any MCP client or coding agent that accepts a custom OpenAI base URL can use it. There is no separate Inferio MCP npm package — set the base URL and key on the client you already run.
Quick Config
Paste these into the client. Your key auto-fills when signed in.
Base URL: https://newapi.c.dabbo.net/v1
API Key: YOUR_API_KEYCompatibility
Step-by-step setup
- 1Get an API key
Create a key at inferio.c.dabbo.net after you sign in (Keys). The client needs that key and base URL https://newapi.c.dabbo.net/v1.
bashOPENAI_API_KEY=YOUR_API_KEY OPENAI_BASE_URL=https://newapi.c.dabbo.net/v1 - 2Add the server to Claude Desktop
In your MCP or agent config, set the OpenAI-compatible base URL to https://newapi.c.dabbo.net/v1 and paste the key. No extra package to install.
json{ "openai": { "apiKey": "YOUR_API_KEY", "baseURL": "https://newapi.c.dabbo.net/v1" } } - 3Or register it in Claude Code
One command registers the server with your key.
bashSet OPENAI_API_KEY and OPENAI_BASE_URL=https://newapi.c.dabbo.net/v1 on the MCP/agent client. There is no Inferio MCP package. - 4Use the tools
Ask your client to find a model, compare prices, or send a prompt. It calls search_models, get_pricing, and chat as needed. Any MCP client that speaks stdio works.
textGET https://newapi.c.dabbo.net/v1/models POST https://newapi.c.dabbo.net/v1/chat/completions
Recommended models
Free models that work here. Paste any model id into the client.
Gotchas
- Models with the :free suffix cost nothing and are limited to about 1 request per minute each.
- Use the Inferio key from the dashboard. There is no UNOROUTER_API_KEY — that name is leftover from the upstream fork.
- Registry names like com.unorouter/mcp are not Inferio. Point the client at newapi.c.dabbo.net/v1 instead.