MCP Catalogs
Home

everything vs godot-devtool

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

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

everything · Summary

Official MCP test server exercising all protocol features for client builders.

godot-devtool · Summary

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything

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.