filesystem vs openrouter-mcp-multimodal
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | openrouter-mcp-multimodal by stabgan | |
|---|---|---|
| Stars | ★ 85,748 | ★ 39 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | AI / LLM ToolsMediaDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
openrouter-mcp-multimodal · Summary
MCP server for OpenRouter providing text, image, audio, and video analysis and generation with 300+ LLMs.
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
openrouter-mcp-multimodal · Use cases
- Content creators generating and analyzing multimedia content including text, images, audio, and video
- Developers integrating OpenRouter's multimodal capabilities into their applications through MCP
- Teams using various AI clients (Claude Desktop, Cursor, etc.) to access 300+ LLMs with advanced tooling
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.
openrouter-mcp-multimodal · Install
Installation
Quick Install
npx -y @stabgan/openrouter-mcp-multimodalRequires OPENROUTER_API_KEY environment variable.
Claude Desktop Configuration
{
"mcpServers": {
"openrouter": {
"command": "npx",
"args": ["-y", "@stabgan/openrouter-mcp-multimodal"],
"env": {
"OPENROUTER_API_KEY": "sk-or-v1-..."
}
}
}
}Docker
{
"mcpServers": {
"openrouter": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "OPENROUTER_API_KEY=sk-or-v1-...",
"stabgan/openrouter-mcp-multimodal:latest"
]
}
}
}Global Install
npm install -g @stabgan/openrouter-mcp-multimodalThen configure with:
{
"mcpServers": {
"openrouter": {
"command": "openrouter-multimodal",
"env": { "OPENROUTER_API_KEY": "sk-or-v1-..." }
}
}
}