pypi mcp-openrouterstdioMITupdated 25d ago
🚀 One MCP server for OpenRouter models 🚀
What can you do with OpenRouter?
🚀 One MCP server for OpenRouter models 🚀
mcp-openrouter is a Python MCP server that lets Codex, Claude Code, opencode, and other MCP hosts call OpenRouter models from local stdio tools.
It exposes chat, image generation, embeddings, model listing, and model search through a small FastMCP server with retry handling, host-aware installation, and optional default model environment variables.
Install
Install the published server into every detected MCP client:
uvx mcp-openrouter install --yes
Install into selected clients:
uvx mcp-openrouter install --yes --clients codex,claude,opencode
Run from a local checkout:
git clone https://github.com/tsilva/mcp-openrouter.git
cd mcp-openrouter
uv sync --dev
keyenv doctor
keyenv run -- uv run mcp-openrouter
mcp-openrouter with no arguments starts the stdio server. The explicit command is uv run mcp-openrouter serve.
Commands
uvx mcp-openrouter install --yes # install into detected MCP clients
uvx mcp-openrouter install --yes --force # replace an existing openrouter config
uvx mcp-openrouter uninstall --yes # remove from detected MCP clients
uv run mcp-openrouter # run the local stdio server
uv run pytest tests/test_cli.py tests/test_client.py tests/test_config.py tests/test_installer.py tests/test_release_metadata.py tests/test_server.py
keyenv run -- uv run pytest tests/test_tools.py
uv run ruff check src/
uv run ruff format src/
Tools
| Tool | Purpose |
|---|---|
chat |
Send a prompt or message list to an OpenRouter chat model. |
generate_image |
Generate one image and optionally save it to an absolute local path. |
embed |
Generate embeddings for a string or list of strings. |
list_models |
List models, optionally filtered by vision, image_gen, embedding, tools, or long_context. |
find_models |
Search model names and slugs, returning up to 20 matches. |
Example MCP prompts:
Use openrouter chat with anthropic/claude-sonnet-4 to summarize this file
Use openrouter generate_image with google/gemini-3-pro-image-preview to create a square app icon
Use openrouter embed with mistralai/mistral-embed-2312 to embed "Hello world"
Use openrouter list_models with capability "image_gen"
Use openrouter find_models to search for "claude"
Configuration
OPENROUTER_API_KEY is required for all tool calls. For a local checkout, its .keyenv.toml maps the variable to macOS Keychain: use keyenv set OPENROUTER_API_KEY to replace it, keyenv doctor to verify it, and keyenv run -- ... to launch the server or live tests. Python still reads the value normally from os.environ.
Optional defaults make the model parameter optional for matching tools:
DEFAULT_TEXT_MODEL=google/gemini-3-pro-image-preview
DEFAULT_IMAGE_MODEL=google/gemini-3-pro-image-preview
DEFAULT_CODE_MODEL=anthropic/claude-sonnet-4.5
DEFAULT_VISION_MODEL=google/gemini-3-pro-image-preview
DEFAULT_EMBEDDING_MODEL=mistralai/mistral-embed-2312
The current tools read DEFAULT_TEXT_MODEL, DEFAULT_IMAGE_MODEL, and DEFAULT_EMBEDDING_MODEL. DEFAULT_CODE_MODEL and DEFAULT_VISION_MODEL are available for client conventions. Non-secret defaults may remain in .env; the API key must not.
Notes
- Python 3.10+ is required.
- The published runtime command installed into hosts is
uvx mcp-openrouter. - Supported installer targets are Codex, Claude Code, and opencode.
generate_image.output_pathmust be absolute, for example/Users/you/output.png.- Unit tests mock network calls.
tests/test_tools.pyrequires a liveOPENROUTER_API_KEY. - After changing server code, restart the MCP host so it launches a fresh server process.
- Keep
server.json,CHANGELOG.md, and the package version in sync before release. The Makefile release helper ismake release-x.y.z.
Local MCP Development
Register a local checkout when you want an MCP host to run your working tree instead of the published PyPI package.
Claude Code:
claude mcp add openrouter --scope user -- keyenv run --manifest /path/to/mcp-openrouter/.keyenv.toml -- uv run --directory /path/to/mcp-openrouter mcp-openrouter
Codex:
codex mcp add openrouter -- keyenv run --manifest /path/to/mcp-openrouter/.keyenv.toml -- uv run --directory /path/to/mcp-openrouter mcp-openrouter
opencode:
{
"mcp": {
"openrouter": {
"type": "local",
"command": ["keyenv", "run", "--manifest", "/path/to/mcp-openrouter/.keyenv.toml", "--", "uv", "run", "--directory", "/path/to/mcp-openrouter", "mcp-openrouter"],
"enabled": true
}
}
}
Architecture

License
Install
Add OpenRouter to your client. Pick the one you use.
claude mcp add mcp-openrouter -- uvx mcp-openroutercodex mcp add mcp-openrouter -- uvx mcp-openrouteramp mcp add mcp-openrouter -- uvx mcp-openrouter{
"mcpServers": {
"mcp-openrouter": {
"command": "uvx",
"args": [
"mcp-openrouter"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-openrouter": {
"command": "uvx",
"args": [
"mcp-openrouter"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp-openrouter","command":"uvx","args":["mcp-openrouter"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp-openrouter": {
"command": "uvx",
"args": [
"mcp-openrouter"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-openrouter": {
"command": "uvx",
"args": [
"mcp-openrouter"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-openrouter": {
"command": "uvx",
"args": [
"mcp-openrouter"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-openrouter": {
"type": "local",
"command": "uvx",
"args": [
"mcp-openrouter"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-openrouter": {
"command": {
"path": "uvx",
"args": [
"mcp-openrouter"
]
}
}
}
}Add to your Zed `settings.json`.
uvx mcp-openrouterRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
3 tools
OpenRouter exposes 3 tools to a connected agent.
- generate_image
- Generate one image and optionally save it to an absolute local path.
- list_models
- List models, optionally filtered by `vision`, `image_gen`, `embedding`, `tools`, or `long_context`.
- find_models
- Search model names and slugs, returning up to 20 matches.
Score
73 / 100
Good
- Documentation25/25
- Maintenance19/25
- Trust13/20
- Capability4/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 18 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 3 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.1.8Latest | Apr 29, 2026 |