Bootstrap library for Go MCP servers — one Run() call instead of ~80 lines of boilerplate
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"go-mcpserver": {
"command": "go",
"args": [
"run",
"github.com/anatolykoptev/go-mcpserver@latest"
]
}
}
}
Run in terminal:
claude mcp add go-mcpserver go run github.com/anatolykoptev/go-mcpserver@latest
Add to .cursor/mcp.json:
{
"mcpServers": {
"go-mcpserver": {
"command": "go",
"args": [
"run",
"github.com/anatolykoptev/go-mcpserver@latest"
]
}
}
}