All Integrations
Integration
Claude Code
Integrate SkillRouter directly into Claude Code so your coding agent can discover and execute skills without leaving the IDE. Claude Code's native MCP support makes this a zero-config setup.
1
Installation
- 1Open your Claude Code settings (Cmd+Shift+P → Claude Code: Settings)
- 2Navigate to the MCP Servers section
- 3Add SkillRouter as a new MCP server with your API key
- 4Restart Claude Code to load the new skills
2
Configuration
.claude/settings.json
// .claude/settings.json
{
"mcpServers": {
"skillrouter": {
"command": "npx",
"args": ["-y", "@skillrouter/mcp-server"],
"env": {
"SKILLROUTER_API_KEY": "sk_live_..."
}
}
}
}3
Usage Example
example-prompts.txt
// Claude Code will automatically discover SkillRouter skills.
// Simply ask Claude to perform a task:
"Send an email to team@example.com with the weekly report"
// → Claude discovers the email skill via SkillRouter
// → Executes it with the provided parameters
// → Returns the result inline
"Look up the current price of AAPL stock"
// → Discovers the finance/stock-price skill
// → Returns real-time price data