Production-ready Model Context Protocol (MCP) servers in Python, Go, and Rust for VS Code integration. Enables AI systems to interact with tools via standardized interfaces.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-servers": {
"command": "go",
"args": [
"run",
"github.com/gunbun33/mcp-servers@latest"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add mcp-servers go run github.com/gunbun33/mcp-servers@latest
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"mcp-servers": {
"command": "go",
"args": [
"run",
"github.com/gunbun33/mcp-servers@latest"
]
}
}
}
📋 Copy