filesystem vs godoc-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | godoc-mcp by mrjoshuak | |
|---|---|---|
| Stars | ★ 85,748 | ★ 117 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsFile System |
| Language | TypeScript | Go |
| Last commit | this month | 2 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
godoc-mcp · Summary
MCP server that provides efficient access to Go documentation to reduce token usage when AI coding agents work with Go projects.
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
godoc-mcp · Use cases
- Exploring Go projects by discovering packages and their purposes
- Understanding Go interfaces and API documentation for implementation guidance
- Efficiently analyzing Go codebases without loading entire source files into context
filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.
godoc-mcp · Install
Installation
Go Install
go install github.com/mrjoshuak/godoc-mcp@latestDocker
docker pull ghcr.io/mrjoshuak/godoc-mcp:latestClaude Desktop
Add to your MCP configuration:
{
"mcpServers": {
"godoc": {
"command": "godoc-mcp"
}
}
}For local projects, set environment variables:
{
"mcpServers": {
"godoc": {
"command": "godoc-mcp",
"env": {
"GOPATH": "/path/to/go",
"GOMODCACHE": "/path/to/go/pkg/mod"
}
}
}
}