opencode-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
opencode-mcp by AlaeddineMessadi | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 39 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
opencode-mcp · Summary
MCP server that integrates OpenCode AI's 79 tools with MCP clients for autonomous coding tasks.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
opencode-mcp · Use cases
- Delegate complex coding tasks like building REST APIs or refactoring modules to OpenCode while the primary AI continues working
- Run background coding tasks in parallel with other work using fire-and-forget tools
- Automate code reviews and debugging sessions with guided workflow prompts
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
opencode-mcp · Install
Installation
Prerequisite: [OpenCode](https://opencode.ai/) must be installed.
**Claude Code:**
claude mcp add opencode -- npx -y opencode-mcp**Claude Desktop / Cursor / Windsurf:** Add to your MCP config:
{
"mcpServers": {
"opencode": {
"command": "npx",
"args": ["-y", "opencode-mcp"]
}
}
}**VS Code Copilot / Zed / Amazon Q:** See [Configuration](docs/configuration.md) for client-specific setup.
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.