gdal-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
gdal-mcp by JordanGunn | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 70 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
gdal-mcp · Summary
GDAL MCP provides AI agents with geospatial analysis capabilities through reflection middleware that justifies methodological choices.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
gdal-mcp · Use cases
- Reprojecting geospatial data with proper CRS selection and documented methodology
- Performing multi-step geospatial analysis with cached reasoning for efficiency
- Creating audit trails for geospatial operations to ensure methodological correctness
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
gdal-mcp · Install
Installation
Via uvx (Recommended)
# Run directly from PyPI
uvx --from gdal-mcp gdal --transport stdioClaude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"gdal-mcp": {
"command": "uvx",
"args": ["--from", "gdal-mcp", "gdal", "--transport", "stdio"],
"env": {
"GDAL_MCP_WORKSPACES": "/path/to/your/geospatial/data"
}
}
}
}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.