filesystem vs godot-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | godot-mcp by tugcantopaloglu | |
|---|---|---|
| Stars | ★ 85,748 | ★ 189 |
| 30d uses | — | — |
| Score | 77 | 48 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | JavaScript |
| Last commit | this month | 2 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
godot-mcp · Summary
Godot MCP server with 149 tools for full engine control in AI-driven game development.
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 · Use cases
- AI agents prototyping game mechanics and iterating on gameplay in real-time
- Automating Godot project setup, scene creation, and asset management
- Debugging game issues through runtime inspection and property manipulation
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 · Install
Installation
- Install the MCP server:
npm install godot-mcp- Add to Claude Desktop configuration:
{
"mcpServers": {
"godot": {
"command": "node",
"args": ["/path/to/godot-mcp/dist/index.js"],
"env": {
"GODOT_PROJECT_PATH": "/path/to/your/godot/project"
}
}
}
}- Restart Claude Desktop to load the server.