GitHub - mrjoshuak/godoc-mcp: go doc mcp server
Navigation Menu
Toggle navigation
-
Product
- GitHub Copilot Write better code with AI
- Security Find and fix vulnerabilities
- Actions Automate any workflow
- Codespaces Instant dev environments
- Issues Plan and track work
- Code Review Manage code changes
- Discussions Collaborate outside of code
- Code Search Find more, search less
Explore
-
Solutions
By company size
By use case
By industry
-
Resources
Topics
Explore
-
Open Source
Repositories
-
Enterprise
Available add-ons
Search or jump to…
Search code, repositories, users, issues, pull requests…
Search
Clear
Provide feedback
We read every piece of feedback, and take your input very seriously.
Include my email address so I can be contacted
Cancel Submit feedback
Saved searches
Use saved searches to filter your results more quickly
Name
Query
To see all available qualifiers, see our documentation.
Cancel Create saved search
Sign up Reseting focus
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert
{{ message }}
- Notifications You must be signed in to change notification settings
- Fork 1
- Star 17
go doc mcp server
License
17 stars 1 fork Branches Tags Activity
Notifications You must be signed in to change notification settings
Additional navigation options
mrjoshuak/godoc-mcp
main
Go to file
Code
Folders and files
| Name | Name | Last commit message
|
Last commit date
| | — | — | — | — | |
Latest commit
Jan 16, 2025
354d90b · Jan 16, 2025
History
| |
|
|
|
Dec 5, 2024
| |
|
|
|
Dec 5, 2024
| |
|
|
|
Jan 9, 2025
| |
|
|
|
Dec 5, 2024
| |
|
|
|
Dec 5, 2024
| |
|
|
|
Jan 16, 2025
| |
View all files
|
Repository files navigation
godoc-mcp
Overview
godoc-mcp
is a Model Context Protocol (MCP) server that provides efficient access to Go documentation. It helps LLMs understand Go projects by providing direct access to package documentation without needing to read entire source files. godoc-mcp
can vastly improve the performance of using LLMs to develop in Go by substantially reducing the number of tokens needed to understand and make use of Go packages.
Getting Started
go install github.com/mrjoshuak/godoc-mcp@latest
Why Use godoc-mcp?
In a sentence: godoc-mcp
provides a more token efficient way for LLMs to understand Go projects.
Traditional file-reading approaches require LLMs to process entire source files often many files to understand a single package. godoc-mcp
provides several advantages:
- Token Efficiency: Returns only the essential documentation, reducing token usage significantly
- Structured Information: Provides official package documentation in a consistent, well-structured format
- Project Navigation: Smart handling of project structures helps LLMs understand multi-package projects
- Integration Ready: Works alongside other MCP servers, enabling both high-level and detailed code analysis
- Performance: Caching and optimized token usage make
godoc-mcp
a fast and efficient tool for Go development - Local: Does not require an internet connection to access documentation
With godoc-mcp
, a LLM can get precisely the information it needs without having to read entire source files. Here are the different levels of detail that an LLM can get.
- Documentation for one exported symbol
- The complete source for one symbol
- A list of all exported symbols (the concise documentation)
- A list of all symbols including unexported symbols
- The full documentation for a package
- The entire source for a package
This makes godoc-mcp
an essential tool for Go developers using LLMs by enabling LLMs to understand significantly more, and in more detail, about the context than previously possible in any programming language.
Features
The server will:
- For directories with Go files: Return package documentation
- For directories without Go files: List available Go packages in subdirectories
- For import paths: Return standard library or third-party package documentation
- Efficient Documentation Access: Retrieves official Go documentation with minimal token usage
- Smart Package Discovery: When pointed at a directory without Go files, lists available Go packages in subdirectories
- Flexible Path Support:
- Local file paths (e.g., “/full/path/to/mypackage”)
- Import paths (e.g., “io”, “github.com/user/repo”)
- Automatic Module Context:
- Creates temporary Go projects when needed
- Automatically sets up module context for external packages
- No manual module setup required for any package documentation
- Handles cleanup of temporary projects
- Module-Aware: Supports documentation for third-party packages through working directory context (i.e. it will run
go doc
from the working directory) - Performance Optimized:
- Built-in response caching
- Efficient token usage through focused documentation retrieval
- Metadata about response sizes
- Smart handling of standard library vs external packages
Examples
In addition to providing documentation while working on coding tasks. godoc-mcp
can also be used to explore Go projects and packages. Here are some examples for general prompting:
Project Understanding
“I’m looking at a Go project at /path/to/some/project. What packages does it contain and what do they do?”
Package Interface Understanding
“What interfaces does the io package provide? I’m particularly interested in anything related to reading.”
Implementation Guidance
“I need to implement the io.Reader interface. Show me its documentation and any related types I should know about.”
API Usage
“Show me the documentation for the Resource type in the /path/to/some/project. I need to understand how to create and use it.”
Library Exploration
“I’m in /path/to/some/project which uses github.com/gorilla/mux. Show me the documentation for the Router type.”
Method Discovery
“What methods are available on the http.Request type? I’m working with standard library HTTP handlers.”
Focused Learning
“Explain how to configure the Server type in the /path/to/project/server package.”
Package Browsing
“I’m in a new Go project directory and see multiple packages. Can you show me what each one does?”
Usage
To add to the Claude desktop app:
{
"mcpServers": {
# other MCP servers ...
"godoc": {
"command": "/path/to/godoc-mcp",
"args": [],
"env": {
"GOPATH": "/path/to/go",
"GOMODCACHE": "/path/to/go/pkg/mod"
}
}
}
}
When connected to an MCP-capable LLM (like Claude), godoc-mcp provides the get_doc
tool with the following parameters:
path
: Path to the Go package or file (import path or file path)target
(optional): Specific symbol to document (function, type, etc.)cmd_flags
(optional): Additional go doc command flagsworking_dir
(optional): Working directory for module-aware documentation (if not provided, a temporary project will be created automatically)
Advanced cmd_flags
values that an LLM can leverage:
-all
: Show all documentation for package, excluding unexported symbols-u
: Show unexported symbols-src
: Show the source code instead of documentation
Troubleshooting
- For local paths, ensure they contain Go source files or point to directories containing Go packages
- If you see module-related errors, ensure GOPATH and GOMODCACHE environment variables are set correctly in your MCP server configuration
- The server automatically handles module context for external packages, but you can still provide a specific working_dir if needed for special cases
License
This project is licensed under the MIT License - see the LICENSE file for details.
About
go doc mcp server
Topics
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Languages
Footer
Footer navigation
You can’t perform that action at this time.
前提条件
- •サーバーのドメインに精通している
- •関連技術の基本的な理解
- •Developer Toolsの知識
おすすめのサーバー
詳細
もっと見る
Win Cli Mcp Server
Model Context Protocol server for secure command-line interactions on Windows systems
Mcp Server Ticketmaster
A Ticketmaster MCP server that provides query capabilites from the Discovery API
Twitter Mcp
A Model Context Protocol server allows to interact with Twitter, enabling posting tweets and searching Twitter.
Reaper Mcp Server
An MCP Server for interacting with Reaper projects.