filesystem vs godot-mcp-pro
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | godot-mcp-pro by youichi-uda | |
|---|---|---|
| Stars | ★ 85,748 | ★ 340 |
| 30d uses | — | — |
| Score | 77 | 52 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | GDScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
godot-mcp-pro · Summary
Premium MCP server providing 172 tools for AI-powered Godot 4 game development with real-time editor integration.
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
godot-mcp-pro · Use cases
- AI-assisted Godot game development with direct editor control
- Automated scene creation and node manipulation through AI agents
- Real-time runtime analysis and debugging of Godot projects
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.
godot-mcp-pro · Install
Installation
- Install the Godot Plugin:
- Copy the addons/godot_mcp/ folder into your Godot project's addons/ directory - Enable the plugin: **Project → Project Settings → Plugins → Godot MCP Pro → Enable**
- Install the MCP Server (requires paid package):
``bash cd server npm install npm run build ``
- Configure Claude Code in
.mcp.json:
``json { "mcpServers": { "godot-mcp-pro": { "command": "node", "args": ["/path/to/server/build/index.js"] } } } ``