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.
Base URL: https://api.inferio.net/v1
API Key: YOUR_API_KEYCompatibility
Step-by-step setup
- 1Get 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.
bashOPENAI_API_KEY=YOUR_API_KEY OPENAI_BASE_URL=https://api.inferio.net/v1 - 2Point 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" } } - 3Or 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.
bashSet OPENAI_API_KEY and OPENAI_BASE_URL=https://api.inferio.net/v1 on the MCP/agent client. There is no Inferio MCP package. - 4Send 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.
textGET https://api.inferio.net/v1/models POST https://api.inferio.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 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.