@ai-rules-builder/mcp-proxy
v1.0.0
Published
MCP (Model Context Protocol) proxy for AI Rules Builder - Search coding rules and best practices directly from Claude Desktop, Windsurf, Cursor, and VS Code
Maintainers
Readme
@ai-rules-builder/mcp-proxy
MCP (Model Context Protocol) proxy for AI Rules Builder. Search and access coding rules directly from your IDE.
🚀 Quick Start
No installation needed! Just use with npx:
npx @ai-rules-builder/mcp-proxy YOUR_TOKEN https://ai-rules-builder.com🔧 IDE Configuration
Claude Desktop
Add to ~/.config/claude-desktop/claude_desktop_config.json:
{
"mcpServers": {
"ai-rules-builder": {
"command": "npx",
"args": [
"-y",
"@ai-rules-builder/mcp-proxy",
"YOUR_TOKEN",
"https://ai-rules-builder.com"
]
}
}
}Windsurf
Add to your Windsurf MCP configuration:
{
"mcpServers": {
"ai-rules-builder": {
"command": "npx",
"args": [
"-y",
"@ai-rules-builder/mcp-proxy",
"YOUR_TOKEN",
"https://ai-rules-builder.com"
]
}
}
}Cursor
Add to .cursor/settings.json:
{
"mcp.servers": {
"ai-rules-builder": {
"command": "npx",
"args": [
"-y",
"@ai-rules-builder/mcp-proxy",
"YOUR_TOKEN",
"https://ai-rules-builder.com"
]
}
}
}VS Code (with MCP extension)
Add to settings.json:
{
"mcp.servers": [
{
"name": "ai-rules-builder",
"command": "npx",
"args": [
"-y",
"@ai-rules-builder/mcp-proxy",
"YOUR_TOKEN",
"https://ai-rules-builder.com"
]
}
]
}🔑 Getting Your Token
- Visit AI Rules Builder
- Log in to your account
- Go to the MCP Integration panel
- Click "Generate API Token"
- Copy your token and use it in the configuration
🛠️ Available Tools
- search_rules - Search by keyword, library, or layer
- get_rule - Get complete rule details by ID
- list_libraries - Browse all technology libraries
📝 License
MIT
