π¦
Go MCP
Simple mcp server written in go
0 installs
1 stars
Trust: 41 β Fair
Devtools
Installation
npx go-mcpAsk AI about Go MCP
Powered by Claude Β· Grounded in docs
I know everything about Go MCP. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
Model Context Protocol (MCP) example

This is a simple project that demonstrates how to create an MCP (Model Context Protocol) server in Golang and use it within VS Code Copilot.
It was built as part of a blog post explaining the basics of MCP and how it can be used to connect tools and data sources with AI-powered environments.
π Read the blog post:
Model Context Protocol(MCP).
π What It Does
- Implements a basic MCP server in Go.
- Exposes one or more tools that can be used by AI systems supporting MCP.
- Demonstrates integration with VS Code Copilot via MCP.
π Technologies Used
- Go (Golang)
- MCP Protocol (Open Standard)
- VS Code Copilot (with MCP support)
π¦ How to Use
1. Clone the repository:
git clone https://github.com/rickKoch/go-mcp.git
cd go-mcp
2. Build the docker image:
./build.sh
3. Copy the following configuration at the bottom of the VS Code user settings file(settings.json):
"mcp": {
"servers": {
"simplemcp": {
"command": "docker",
"args": ["run", "-i", "--rm", "simplemcp"]
},
}
}
