All Integrations
Integration
Cursor
Use SkillRouter skills inside Cursor to give your AI coding assistant access to external APIs, databases, and automations. Works via Cursor's MCP integration.
1
Installation
- 1Open Cursor Settings → Features → MCP Servers
- 2Click 'Add new MCP server'
- 3Enter the SkillRouter MCP server command
- 4Add your API key to the environment variables
- 5Restart Cursor to activate
2
Configuration
.cursor/mcp.json
// .cursor/mcp.json
{
"mcpServers": {
"skillrouter": {
"command": "npx",
"args": ["-y", "@skillrouter/mcp-server"],
"env": {
"SKILLROUTER_API_KEY": "sk_live_..."
}
}
}
}3
Usage Example
example-prompts.txt
// Once configured, Cursor's AI can access SkillRouter skills.
// Use the agent mode (Cmd+I) and ask:
"Query our PostgreSQL database for all users who signed up this week"
// → Cursor discovers the database/query skill
// → Executes the query via SkillRouter
// → Displays results in the chat
"Create a new GitHub issue for the bug we just found"
// → Discovers the github/create-issue skill
// → Fills in the details from context