Awesome MCPSoftware Development

mrjoshuak/godoc-mcp

⭐ 124 Go added to this list on 2025-05-14 repository created 2024-12-05

godoc-mcp is a Model Context Protocol server written in Go that gives language models efficient access to Go documentation. Its stated purpose is token efficiency: rather than making an assistant read many whole source files to understand one package, it returns only the documentation that was asked for, in the consistent structure that go doc already produces. An assistant can request several levels of detail, from the documentation for a single exported symbol or the complete source of that symbol, through a list of exported symbols or of all symbols including unexported ones, up to the full documentation or the entire source of a package. Paths may be local directories or import paths, so both a project on disk and a standard library or third-party package work. When pointed at a directory that contains Go files the server returns that package documentation, and when the directory has none it lists the Go packages found in subdirectories, which helps a model navigate a multi-package repository. Module context is handled automatically: for external packages the server creates a temporary Go project, sets up the module context and cleans up afterwards, and for third-party packages it runs go doc from the supplied working directory. Responses are cached and carry metadata about their size, and because everything is local no internet connection is needed. Three transports are available, selected with --transport and --addr: stdio by default for local clients such as Claude Desktop, Server-Sent Events over HTTP, and the streamable HTTP transport recommended by the MCP specification. It installs with go install or from the ghcr.io/mrjoshuak/godoc-mcp container image, which also works behind the Docker MCP Gateway; mounting a project and passing /workspace as working_dir exposes local documentation. The licence is MIT.

https://github.com/mrjoshuak/godoc-mcp

mcp-servergogolangdocumentationgodocdeveloper-toolsdocker

Also in Software Development

Graphify-Labs/graphify

Graphify transforms codebases, documentation, and other files into queryable knowledge graphs, enhancing developer productivity with local AST parsing and detailed edge explanations.

upstash/context7

Context7 MCP Server is an MCP server that delivers up-to-date, version-specific code documentation and examples to enhance LLMs and AI code editors, ensuring accurate and current code generation.

DeusData/codebase-memory-mcp

High-performance Model Context Protocol (MCP) server that indexes codebases into a persistent knowledge graph for AI coding agents, supporting 158 languages, lightning-fast queries, and various dev...

github/github-mcp-server

GitHub MCP Server is an official Model Context Protocol server that integrates with GitHub APIs to enable advanced automation and AI-powered interactions with GitHub repositories and workflows.

tirth8205/code-review-graph

Code-review-graph is a local-first code intelligence solution that builds a persistent structural map of your codebase to provide precise context to AI coding tools, significantly reducing token us...

oraios/serena

Serena is a free and open-source coding agent toolkit that uses the Model Context Protocol to enable LLMs to autonomously perform semantic code retrieval and editing with IDE-like precision on complex codebases.

eyaltoledano/claude-task-master

Claude Task Master is an AI-powered task management system designed for AI-driven development that integrates seamlessly with various editors via the Model Control Protocol (MCP).

mksglu/context-mode

Context Mode is an MCP server designed to optimize context window usage for AI coding agents by sandboxing tool output, tracking session continuity with SQLite, and promoting LLMs as code generator...