filesystem vs toolhive-registry-server
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | toolhive-registry-server by stacklok | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30d uses | — | — |
| Score | 77 | 42 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Ops & InfraDeveloper ToolsSecurity |
| Language | TypeScript | Go |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
toolhive-registry-server · Summary
A registry server that discovers, governs and controls access to MCP servers and skills across organizations.
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
toolhive-registry-server · Use cases
- Centralized governance of MCP servers across large organizations with multiple teams
- Aggregating MCP servers from both public registries and internal sources with unified access control
- Providing different views of the same MCP servers to different teams based on their roles and needs
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.
toolhive-registry-server · Install
Installation
Prerequisites
- Go 1.26 or later (for building from source)
- Task (for build automation)
- PostgreSQL 16+
Build from source
task buildRun
# Run with Git source
thv-registry-api serve --config examples/config-git.yaml
# Run with local file
thv-registry-api serve --config examples/config-file.yamlDocker
task docker-upClaude Desktop Integration
Add to Claude Desktop config:
{
"mcpServers": {
"toolhive": {
"command": "thv-registry-api",
"args": ["serve", "--config", "path/to/config.yaml"]
}
}
}