MCP Catalogs
Home

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
Score7748
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptJavaScript
Last committhis month2 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

  1. Install the MCP server:
npm install godot-mcp
  1. 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"
      }
    }
  }
}
  1. Restart Claude Desktop to load the server.
Comparison generated from public README + GitHub signals. Last updated automatically.