MCP

Access BitRouter's documentation from MCP-aware editors and agents.

BitRouter publishes a public Model Context Protocol (MCP) server so your editor or agent can search the docs, read pages, and check model availability without leaving the loop.

  • Endpointhttps://bitrouter.ai/mcp (Streamable HTTP)
  • Auth — none; it's public.

Tools

  • search_docs(query, limit?, locale?) — Full-text search across the docs; returns hits with a title, canonical URL, and a path to pass to get_doc.
  • get_doc(path, locale?) — Fetch a single documentation page as clean Markdown.
  • lookup_model(query) — Check whether a provider/model is routable through BitRouter and get its pricing, context window, and a copy-paste config snippet.

Clients that read MCP resources can also pull the curated index via the bitrouter-docs://llms-index resource.

Add it to your agent

Claude Code

claude mcp add --transport http bitrouter-docs https://bitrouter.ai/mcp

Cursor and other clients

Add a remote MCP server entry to your client's config:

{
  "mcpServers": {
    "bitrouter-docs": { "url": "https://bitrouter.ai/mcp" }
  }
}
Prefer feeding the docs straight into context instead of calling tools? See llms.txt.

How is this guide?

On this page