filesystem vs infobus-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | infobus-mcp by simovilab | |
|---|---|---|
| Stars | ★ 85,748 | ★ 93 |
| 30d uses | — | — |
| Score | 77 | 41 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | CommunicationProductivityOther |
| Language | TypeScript | Python |
| Last commit | this month | 6 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
infobus-mcp · Summary
MCP server for transit information access through standardized interfaces.
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
infobus-mcp · Use cases
- AI assistants helping users plan transit trips
- Real-time transit information queries
- Natural language processing for transit assistance
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.
infobus-mcp · Install
pip install infobus-mcpFor Claude Desktop:
{
"mcpServers": {
"infobus": {
"command": "python",
"args": ["-m", "infobus_mcp"]
}
}
}