Search docs...

Start typing to search documentation

ModelContextProtocol
MCP Server

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.

text
Base URL: https://newapi.c.dabbo.net/v1
API Key: YOUR_API_KEY

Sign in to auto-fill your API key

Compatibility

Chat Completions

Step-by-step setup

  1. 1
    Get 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.

    bash
    OPENAI_API_KEY=YOUR_API_KEY
    OPENAI_BASE_URL=https://newapi.c.dabbo.net/v1

    Sign in to auto-fill your API key

  2. 2
    Add 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"
      }
    }

    Sign in to auto-fill your API key

  3. 3
    Or register it in Claude Code

    One command registers the server with your key.

    bash
    Set OPENAI_API_KEY and OPENAI_BASE_URL=https://newapi.c.dabbo.net/v1 on the MCP/agent client. There is no Inferio MCP package.

    Sign in to auto-fill your API key

  4. 4
    Use 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.

    text
    GET https://newapi.c.dabbo.net/v1/models
    POST https://newapi.c.dabbo.net/v1/chat/completions

    Sign in to auto-fill your API key

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.
Generate API KeyModels