mcp_tool_override_tester vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
mcp_tool_override_tester by kibitzing | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 25 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 12 mo ago | this month |
mcp_tool_override_tester · Summary
A Python MCP server demonstrating dynamic tool overriding across multiple servers.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
mcp_tool_override_tester · Use cases
- Testing tool precedence in MCP configurations with multiple servers
- Demonstrating how tool conflicts are resolved in MCP setups
- Learning MCP tool override mechanisms for advanced configuration
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_tool_override_tester · Install
Install using uvx:
uvx run --from mcp-tool-override-tester@latest override_mcp_toolsAdd to Claude Desktop config:
{
"mcpServers": {
"override_tester": {
"command": "/path/to/your/uvx",
"args": [
"--from",
"mcp-tool-override-tester@latest",
"override_mcp_tools"
]
}
}
}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.