MCP Catalogs
Home

cheatengine-mcp-bridge vs everything

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

cheatengine-mcp-bridge
by miscusi-peek
everything
by modelcontextprotocol
Stars★ 691★ 85,748
30d uses
Score5477
Official
Categories
Developer ToolsSecurityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageLuaTypeScript
Last committhis monththis month

cheatengine-mcp-bridge · Summary

MCP server connecting AI assistants directly to Cheat Engine for automated reverse engineering and memory analysis.

everything · Summary

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

cheatengine-mcp-bridge · Use cases

  • Automating memory analysis and pointer scanning in reverse engineering
  • Creating game trainers and security auditing tools with AI assistance
  • Generating unique AOB patterns for game updates and patches

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

cheatengine-mcp-bridge · Install

Installation

  1. Install Python dependencies:
pip install -r MCP_Server/requirements.txt

Or manually:

pip install mcp pywin32
  1. Load bridge in Cheat Engine:
  • Enable DBVM in Cheat Engine if you plan to use DBVM tools
  • Open Cheat Engine's Lua Engine or script executor
  • Execute MCP_Server/ce_mcp_bridge.lua
  1. Configure MCP client (e.g., Claude Desktop):
{
  "servers": {
    "cheatengine": {
      "command": "python",
      "args": ["C:/path/to/MCP_Server/mcp_cheatengine.py"]
    }
  }
}
  1. Restart client and verify connection with ping tool.

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.