filesystem vs sh-disney-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | sh-disney-mcp by syyuan14 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 81 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | OtherProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 7 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
sh-disney-mcp · Summary
An MCP server that provides real-time ticket pricing and availability for Shanghai Disneyland.
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
sh-disney-mcp · Use cases
- Travel planning assistants for Disneyland visitors
- Chatbots providing real-time ticket information
- Personalized itinerary recommendations based on ticket availability
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.
sh-disney-mcp · Install
Installation
- Install via npm:
npm install -g sh-disney-mcp- Integrate with your MCP host:
For Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"sh-disney-mcp": {
"command": "npx",
"args": ["-y", "sh-disney-mcp"]
}
}
}