filesystem vs better-godot-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | better-godot-mcp by n24q02m | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 43 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
better-godot-mcp · Summary
Composite MCP server providing 17 mega-tools for AI-assisted Godot 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
better-godot-mcp · Use cases
- AI-assisted game development with Godot Engine
- Automating scene management and manipulation tasks
- Streamlining script and resource management in 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.
better-godot-mcp · Install
Installation
Claude Desktop
- Open Claude Desktop preferences
- Go to 'MCP Servers' section
- Add the following configuration:
{
"better-godot-mcp": {
"command": "npx",
"args": ["@n24q02m/better-godot-mcp"]
}
}npm
npm install -g @n24q02m/better-godot-mcpDocker
docker run n24q02m/better-godot-mcpFor detailed setup instructions, visit: https://mcp.n24q02m.com/servers/better-godot-mcp/setup/