Search docs...

Start typing to search documentation

ModelContextProtocol
MCP Server

MCP Server Setup Guide

Give any MCP client live access to UnoRouter: search the model catalog, check pricing, and chat with any model.

Overview

unorouter-mcp is an npm package that runs as an MCP server over stdio, listed in the MCP registry as com.unorouter/mcp. It exposes three tools: search_models filters the live catalog and takes a free_only option, get_pricing returns USD list prices per 1M tokens, and chat sends a prompt to any model. Source: github.com/0-don/unorouter-mcp.

Quick Config

Paste these into the client. Your key auto-fills when signed in.

text
Base URL: https://api.unorouter.com/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 unorouter.com/token. The server reads UNOROUTER_API_KEY. UNOROUTER_BASE_URL is an optional endpoint override.

    bash
    UNOROUTER_API_KEY=YOUR_API_KEY
    UNOROUTER_BASE_URL=https://api.unorouter.com/v1

    Sign in to auto-fill your API key

  2. 2
    Add the server to Claude Desktop

    Add this block to your Claude Desktop config file. npx fetches unorouter-mcp on first run, so there is nothing to install.

    json
    {
      "mcpServers": {
        "unorouter": {
          "command": "npx",
          "args": ["-y", "unorouter-mcp"],
          "env": { "UNOROUTER_API_KEY": "YOUR_API_KEY" }
        }
      }
    }

    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
    claude mcp add unorouter -e UNOROUTER_API_KEY=YOUR_API_KEY -- npx -y unorouter-mcp

    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
    search_models  filter the live catalog (free_only option)
    get_pricing    USD list prices per 1M tokens
    chat           send a prompt to any model

    Sign in to auto-fill your API key

Recommended models

Free models that work here. Paste any model id into the client.

ox-alpha:freeglm-5.3-search:freeglm-5.3-think-search:freeglm-5.3-thinking:freeglm-5.3:free

Gotchas

  • Models with the :free suffix cost nothing and are limited to about 1 request per minute each.
  • UNOROUTER_API_KEY is required. Set UNOROUTER_BASE_URL only to point at a different endpoint.
  • Registry-aware MCP clients can install by registry name com.unorouter/mcp instead of the npx command.
Generate API KeyModels