filesystem vs MCP2OSC
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | MCP2OSC by yyf | |
|---|---|---|
| Stars | ★ 85,748 | ★ 3 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | MediaDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
MCP2OSC · Summary
MCP2OSC enables parametric control of OSC devices using natural language through Claude.
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
MCP2OSC · Use cases
- Controlling music production software like MaxMSP and SuperCollider through natural language
- Generating and debugging OSC messages for multimedia installations
- Visualizing and analyzing OSC data streams in real-time
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.
MCP2OSC · Install
Installation
- **Clone the repository**
``bash git clone https://github.com/yyf/MCP2OSC.git cd MCP2OSC ``
- **Install dependencies**
``bash npm install ``
- **Configure your LLM application**
Add to your Claude Desktop MCP configuration file: ``json { "mcpServers": { "mcp2osc": { "command": "node", "args": ["/path/to/MCP2OSC/mcp-server.js"], "cwd": "/path/to/MCP2OSC", "env": { "OSC_HOST": "127.0.0.1", "OSC_SEND_PORT": "9500", "OSC_RECEIVE_PORT": "9501", "WEBSOCKET_PORT": "8765", "WEBSOCKET_OSC_PORT": "9500", "MAX_OSC_MESSAGES": "2000", "OSC_LOG_ROTATION": "true" } } } } ``
- **Start the LLM application and test**
- Restart Claude after making configuration changes - Try example prompts like "What MCP tools are available" or "Ping MaxMSP at port 9500"