Gopeak-godot-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
Gopeak-godot-mcp by HaD0Yun | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 182 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | File SystemDeveloper ToolsProductivity |
| Language | JavaScript | TypeScript |
| Last commit | this month | this month |
Gopeak-godot-mcp · Summary
GoPeak is a comprehensive MCP server for Godot 4 with 95+ tools for game development workflows.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
Gopeak-godot-mcp · Use cases
- Automated game development with AI assistance in Godot projects
- Debugging Godot games by reading debug output and fixing errors
- Creating and modifying game scenes and scripts through AI agents
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
Gopeak-godot-mcp · Install
Installation
Requirements
- Godot 4.x
- Node.js 18+
- MCP-compatible client (Claude Desktop, Cursor, Cline, or OpenCode)
1) Run GoPeak
npx -y gopeak2) Add MCP client config
{
"mcpServers": {
"godot": {
"command": "npx",
"args": ["-y", "gopeak"],
"env": {
"GODOT_PATH": "/path/to/godot",
"GOPEAK_TOOL_PROFILE": "compact"
}
}
}
}3) Install Godot Plugins
From your Godot project folder:
curl -sL https://raw.githubusercontent.com/HaD0Yun/Gopeak-godot-mcp/main/install-addon.sh | bashEnable plugins in Project Settings → Plugins:
godot_mcp_editorfor scene/resource toolsgodot_mcp_runtimefor runtime inspection, screenshots, and input workflows
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.