MCP Catalogs
Home

Gopeak-godot-mcp vs everything

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

Gopeak-godot-mcp
by HaD0Yun
everything
by modelcontextprotocol
Stars★ 182★ 85,748
30d uses
Score5077
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last committhis monththis month

Gopeak-godot-mcp · Summary

GoPeak is a comprehensive MCP server for Godot 4 with 95+ tools for game development workflows.

everything · Summary

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

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

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

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 gopeak

2) 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 | bash

Enable plugins in Project Settings → Plugins:

  • godot_mcp_editor for scene/resource tools
  • godot_mcp_runtime for runtime inspection, screenshots, and input workflows

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
Comparison generated from public README + GitHub signals. Last updated automatically.