filesystem vs mcp-client-manager-go
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | mcp-client-manager-go by VikashLoomba | |
|---|---|---|
| Stars | ★ 85,748 | ★ 3 |
| 30d uses | — | — |
| Score | 77 | 33 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | Go |
| Last commit | this month | 7 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp-client-manager-go · Summary
A Go library that manages multiple MCP servers and provides a unified HTTP gateway for connecting to them.
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
mcp-client-manager-go · Use cases
- Build applications that need to interact with multiple MCP servers simultaneously
- Create a unified API gateway for MCP services in Go
- Manage MCP server connections with automatic reconnection and monitoring
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.
mcp-client-manager-go · Install
go get github.com/vikashloomba/mcp-client-manager-go/pkg/mcpmgr
go get github.com/vikashloomba/mcp-client-manager-go/pkg/mcp-gatewayFor Claude Desktop integration, add this to your Claude Desktop config:
{
"mcpServers": {
"mcp-manager": {
"command": "go",
"args": ["run", "github.com/vikashloomba/mcp-client-manager-go/cmd/gateway-example"]
}
}
}