MCPWrapper vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
MCPWrapper by jm12138 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 1 | ★ 85,748 |
| 30d uses | — | — |
| Score | 31 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 11 mo ago | this month |
MCPWrapper · Summary
MCPWrapper is a Python tool that wraps any Python package as an MCP server without code modification.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
MCPWrapper · Use cases
- Quickly exposing existing Python libraries as MCP services without refactoring code
- Creating MCP servers for internal tools by wrapping utility modules
- Converting standalone Python packages to work with MCP-compatible clients
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
MCPWrapper · Install
pip install git+https://github.com/jm12138/MCPWrapperTo use with Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"json-mcp": {
"command": "python",
"args": ["-m", "mcpwrapper", "--server_name", "json_mcp_server", "--module_name", "json", "--transport", "sse", "--listen", "0.0.0.0", "--port", "8000"]
}
}
}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.