A minimal MCP server template that takes 2 numbers as input and outputs their addition and subtraction results in separate fields.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"golang-mcp-server-te": {
"command": "go",
"args": [
"run",
"github.com/gboddin/golang-mcp-server-template@latest"
]
}
}
}
Run in terminal:
claude mcp add golang-mcp-server-te go run github.com/gboddin/golang-mcp-server-template@latest
Add to .cursor/mcp.json:
{
"mcpServers": {
"golang-mcp-server-te": {
"command": "go",
"args": [
"run",
"github.com/gboddin/golang-mcp-server-template@latest"
]
}
}
}