filesystem vs godoc-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | godoc-mcp-server by yikakia | |
|---|---|---|
| Stars | ★ 85,748 | ★ 35 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM Tools |
| 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-server · Summary
An MCP server that provides information about Go packages from pkg.go.dev.
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-server · Use cases
- Helping Go developers find and understand package documentation within AI assistants
- Enabling LLMs to provide accurate information about Go package APIs and usage
- Automating package research tasks for Go projects
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-server · Install
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": []
}
}
}