Search docs...

Start typing to search documentation

ModelContextProtocol
MCP

MCP Clients

Point an MCP-capable client at Inferio: one base URL, and the same key you use everywhere else.

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://api.inferio.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 on the Tokens page after you sign in. The client needs that key and the base URL https://api.inferio.net/v1.

    bash
    OPENAI_API_KEY=YOUR_API_KEY
    OPENAI_BASE_URL=https://api.inferio.net/v1

    Sign in to auto-fill your API key

  2. 2
    Point the client at Inferio

    In your MCP or agent config, set the OpenAI-compatible base URL to https://api.inferio.net/v1 and paste the key. No extra package to install.

    json
    {
      "openai": {
        "apiKey": "YOUR_API_KEY",
        "baseURL": "https://api.inferio.net/v1"
      }
    }

    Sign in to auto-fill your API key

  3. 3
    Or reuse a client you already configured

    Swap the base URL and key on a client you already set up and keep the rest of its config as it is.

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

    Sign in to auto-fill your API key

  4. 4
    Send a request

    Ask the client for a model list or a completion. Requests go to https://api.inferio.net/v1 with your key, the same as any other OpenAI-compatible client.

    text
    GET https://api.inferio.net/v1/models
    POST https://api.inferio.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 key from the dashboard. Name the environment variable whatever you like, for example INFERIO_API_KEY.
  • Point the client at https://api.inferio.net/v1. There is no third-party MCP registry package.
Generate API KeyModels