godoc-mcp-server
by yikakia·★ 35·Score 41
An MCP server that provides information about Go packages from pkg.go.dev.
Overview
The godoc-mcp-server allows LLMs to search and retrieve information about Go packages directly from pkg.go.dev through the Model Context Protocol. It features tools for searching packages, retrieving detailed package information, and accessing examples. The server operates via stdio and includes a local cache to improve performance by avoiding repeated searches. The implementation includes thoughtful design considerations for tool parameter descriptions to enhance LLM usability.
Try asking AI
After installing, here are 3 things you can ask your AI assistant:
When to choose this
Choose this MCP server when working with Go packages and need quick, AI-accessible documentation from pkg.go.dev without leaving your development environment.
When NOT to choose this
Don't choose this if you need documentation for languages other than Go or require more detailed package analysis beyond what pkg.go.dev provides.
Tools this server exposes
2 tools extracted from the READMEsearchPackageSearch for Go packages on pkg.go.dev
getPackageInfoGet detailed information about a specific Go package
Comparable tools
Installation
Installation
Download the compiled binary from the [releases page](https://github.com/yikakia/godoc-mcp-server/releases/tag/latest).
Or install from source:
go install github.com/yikakia/godoc-mcp-server/cmd/godoc-mcp-server@latestConfiguration
Add to Claude Desktop config:
{
"mcpServers": {
"godoc": {
"command": "godoc-mcp-server",
"args": []
}
}
}Compare godoc-mcp-server with
Last updated · Auto-generated from public README + GitHub signals.