opencode-browser vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
opencode-browser by michaljach | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 46 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Browser AutomationWeb ScrapingDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
opencode-browser · Summary
MCP server plugin for OpenCode that enables browser automation through Browser MCP integration.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
opencode-browser · Use cases
- Automated web testing and validation of web applications
- Data extraction and web scraping from various websites
- Form automation and data entry for repetitive web tasks
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-browser · Install
Installation
- Install Browser MCP Extension:
- Visit https://browsermcp.io/install - Install the extension for Chrome or Edge - Follow the setup instructions
- Configure OpenCode:
``bash npx opencode-browser init ` This creates/updates ./opencode.json` with the required configuration.
- Alternative manual configuration:
``json { "$schema": "https://opencode.ai/config.json", "plugin": ["opencode-browser"], "mcp": { "browsermcp": { "type": "local", "command": ["npx", "-y", "@browsermcp/mcp@0.1.3"], "enabled": true } } } ``
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.