MCP Catalogs
Home

godoc-mcp-server

by yikakia·35·Score 41

An MCP server that provides information about Go packages from pkg.go.dev.

developer-toolsai-llm
4
Forks
0
Open issues
2 mo ago
Last commit
2d ago
Indexed

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:

you:Helping Go developers find and understand package documentation within AI assistants
you:Enabling LLMs to provide accurate information about Go package APIs and usage
you:Automating package research tasks for Go projects

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 README
  • searchPackage

    Search for Go packages on pkg.go.dev

  • getPackageInfo

    Get detailed information about a specific Go package

Comparable tools

gopls-mcpgo-doc-mcpshell-mcp

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@latest

Configuration

Add to Claude Desktop config:

{
  "mcpServers": {
    "godoc": {
      "command": "godoc-mcp-server",
      "args": []
    }
  }
}

Compare godoc-mcp-server with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.