Install MCP Server
Configure Router9 as an MCP server for AI agents
Router9 skills are available via the Model Context Protocol (MCP), making them compatible with MCP-enabled AI agents like Claude Code and Cursor.
Prerequisites
- Node.js 18+
- A Router9 API key (
sk-r9k-...). See Authentication to create one.
Claude Code
Add to .claude/settings.json:
{
"mcpServers": {
"router9": {
"command": "npx",
"args": ["-y", "@router9/mcp-server"],
"env": {
"ROUTER9_API_KEY": "sk-r9k-your-key"
}
}
}
}Cursor
Add to .cursor/mcp.json:
{
"mcpServers": {
"router9": {
"command": "npx",
"args": ["-y", "@router9/mcp-server"],
"env": {
"ROUTER9_API_KEY": "sk-r9k-your-key"
}
}
}
}Generic MCP Client
Use the following configuration for any MCP-compatible client:
{
"command": "npx",
"args": ["-y", "@router9/mcp-server"],
"env": {
"ROUTER9_API_KEY": "sk-r9k-your-key"
}
}Or run directly from the command line:
npx @router9/mcp-server --api-key sk-r9k-your-keyAvailable Tools
Once connected, the MCP server exposes all Router9 skills as tools:
audio.transcribe/audio.synthesizevision.describe/vision.ocr/image.generatesearch.webstorage.upload/storage.download/storage.list/storage.delete/storage.usage
See Install Skill for the full tool list and API Reference for detailed documentation.