A minimal implementation of a mcp server (written in Go) as an example project to learn the language and expand my knowledge towards ai.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"minimal-go-mcp-serve": {
"command": "go",
"args": [
"run",
"github.com/c0nst4ntin/minimal-go-mcp-server@latest"
]
}
}
}
Run in terminal:
claude mcp add minimal-go-mcp-serve go run github.com/c0nst4ntin/minimal-go-mcp-server@latest
Add to .cursor/mcp.json:
{
"mcpServers": {
"minimal-go-mcp-serve": {
"command": "go",
"args": [
"run",
"github.com/c0nst4ntin/minimal-go-mcp-server@latest"
]
}
}
}