filesystem vs agent-bridge
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | agent-bridge by raysonmeng | |
|---|---|---|
| Stars | ★ 85,748 | ★ 118 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsCommunication |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
agent-bridge · Summary
Bidirectional bridge between Claude Code and Codex via MCP protocol for collaborative workflows.
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
agent-bridge · Use cases
- Collaborative coding workflows between Claude AI and Codex
- Real-time message passing between AI assistants
- Human-in-the-loop multi-agent systems
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.
agent-bridge · Install
Installation via Plugin Marketplace (recommended)
- In Claude Code, add the AgentBridge marketplace:
``bash /plugin marketplace add raysonmeng/agent-bridge ``
- Install the plugin:
``bash /plugin install agentbridge@agentbridge ``
- Reload plugins to activate:
``bash /reload-plugins ``
- Install the CLI globally:
``bash npm install -g @raysonmeng/agentbridge ``
- Generate project config (optional):
``bash abg init ``
- Start Claude Code with AgentBridge channel enabled:
``bash abg claude ``
- Start Codex TUI connected to the bridge:
``bash abg codex ``