filesystem vs reshapr
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | reshapr by reshaprio | |
|---|---|---|
| Stars | ★ 85,748 | ★ 92 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Java |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
reshapr · Summary
reShapr is a no-code MCP server that transforms REST/GraphQL/gRPC APIs into AI-native tools with context control.
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
reshapr · Use cases
- Transforming existing REST APIs into MCP tools for AI agents
- Controlling context size by filtering API responses before sending to LLMs
- Creating MCP interfaces for GraphQL and gRPC services
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.
reshapr · Install
Install the CLI:
npm install -g @reshapr/reshapr-cliRun the platform locally:
reshapr runConnect to control plane and import API:
reshapr login -s http://localhost:5555 -u admin -p password
reshapr import -u https://raw.githubusercontent.com/open-meteo/open-meteo/refs/heads/main/openapi.yml --backendEndpoint https://api.open-meteo.comConfigure Claude Desktop:
{
"mcpServers": {
"reshapr": {
"command": "npx",
"args": ["@reshapr/reshapr-cli", "serve"]
}
}
}