MCP Catalogs
Home

filesystem vs godot-devtool

Side-by-side comparison to help you pick between these two MCP servers.

filesystem
by modelcontextprotocol
godot-devtool
by wangdiandao
Stars★ 85,748★ 42
30d uses
Score7745
Official
Categories
File SystemDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis monththis month

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

godot-devtool · Summary

Godot 4 MCP server for AI-assisted project inspection, editing, validation, and runtime automation.

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-devtool · Use cases

  • AI-assisted Godot project setup and configuration
  • Live scene and script editing through AI assistants
  • Automated testing and QA validation during runtime

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-devtool · Install

Installation

From Local Build

  1. Extract a published release zip to a stable path
  2. Confirm the server entry exists at build/index.js
  3. Add this MCP server to your client configuration:
{
  "mcpServers": {
    "godot-devtool": {
      "command": "node",
      "args": ["E:/godot-devtool/build/index.js"],
      "env": {
        "GODOT_PATH": "D:/Program Files/Godot/Godot_v4.x.exe",
        "GODOT_DEVTOOL_WS_PORT": "8766"
      }
    }
  }
}

From Source

git clone https://github.com/wangdiandao/godot-devtool.git
cd godot-devtool
npm install
npm run build
  1. Install the Godot plugin using plugin_install tool
Comparison generated from public README + GitHub signals. Last updated automatically.