CE MCP Plugin

v1.0.0Developer Toolsstable

CE MCP Plugin是一个Cheat Engine插件,它实现了Model Context Protocol (MCP),允许AI模型与Cheat Engine进行交互。通过这个插件,AI可以使用Cheat Engine的各种功能,如内存读写、进程管理等。

ce-mcp-pluginmcpai-integration
Share:
45
Stars
0
Downloads
0
Weekly
0/5

What is CE MCP Plugin?

CE MCP Plugin is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to ce mcp plugin是一个cheat engine插件,它实现了model context protocol (mcp),允许ai模型与cheat engine进行交互。通过这个插件,ai可以使用cheat engine的各种功能,如内存读写、进程管理等。

CE MCP Plugin是一个Cheat Engine插件,它实现了Model Context Protocol (MCP),允许AI模型与Cheat Engine进行交互。通过这个插件,AI可以使用Cheat Engine的各种功能,如内存读写、进程管理等。

This server falls under the Developer Tools category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • CE MCP Plugin是一个Cheat Engine插件,它实现了Model Context Protocol (M

Use Cases

Enable AI to interact with Cheat Engine for debugging
Perform memory analysis through natural language commands
Eruditi

Maintainer

LicenseMIT
Languagec
Versionv1.0.0
UpdatedMay 20, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx ce-mcp-plugin

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use CE MCP Plugin

CE MCP Plugin is a Cheat Engine plugin that implements the Model Context Protocol, enabling AI models to interact with Cheat Engine's memory analysis and manipulation capabilities through natural language. The plugin exposes 75 commands covering memory read/write, process management, assembly/disassembly, DLL injection, breakpoint debugging, and game speed control — making it possible for an AI assistant to perform reverse engineering and debugging tasks on Windows processes. Security researchers and game modders use it to automate Cheat Engine workflows with AI guidance.

Prerequisites

  • Windows operating system (the plugin is Windows-only)
  • Cheat Engine 7.0 or higher installed
  • Visual Studio 2019 or higher with Windows SDK and Winsock2 libraries (for compilation)
  • An AI server backend running on the configured IP and port (default 127.0.0.1:8888)
  • An MCP-compatible AI client to issue commands
1

Open the solution in Visual Studio

Open CE-MCP-Plugin.sln in Visual Studio 2019 or later. The project requires the Windows SDK and Winsock2 libraries to be available.

2

Configure the AI server connection

Before building, edit the C source to set the AI server IP and port if you are not using the defaults (127.0.0.1:8888). Look for the aiServerIP and aiServerPort settings.

// Default settings in source (modify before compilation):
// aiServerIP = "127.0.0.1"
// aiServerPort = 8888
3

Build the plugin DLL

Select the Release/Win32 build configuration in Visual Studio and build the solution to generate CE-MCP-Plugin.dll.

4

Deploy the DLL to Cheat Engine

Copy the compiled CE-MCP-Plugin.dll to Cheat Engine's plugins directory.

# Copy to Cheat Engine plugins directory (adjust path to your CE install)
copy CE-MCP-Plugin.dll "C:\Program Files\Cheat Engine 7.5\plugins\"
5

Launch Cheat Engine

Start Cheat Engine. The plugin loads automatically on startup and attempts to connect to the AI server at the configured address. Ensure your AI server backend is running before launching.

6

Issue commands from your AI client

With the plugin connected, your AI model can send Cheat Engine commands. Commands follow the format COMMAND:parameters. The Lua API also allows scripting with aiSendCommand().

-- Example Lua usage within Cheat Engine:
aiSendCommand("READ_MEMORY:0x12345678,int")
aiSendCommand("SPEEDHACK:2.0")
aiSendCommand("WRITE_MEMORY:0x12345678,100,int")

CE MCP Plugin Examples

Client configuration

The CE MCP Plugin connects via a local TCP socket to an AI server. Example MCP server config for routing AI commands to the plugin backend.

{
  "mcpServers": {
    "ce-mcp-plugin": {
      "command": "your-ai-server-binary",
      "args": ["--host", "127.0.0.1", "--port", "8888"]
    }
  }
}

Prompts to try

Example command strings and AI prompts for Cheat Engine memory operations.

- "READ_MEMORY:0x12345678,int" — read an integer from memory address
- "WRITE_MEMORY:0x12345678,100,int" — write value 100 to address
- "SPEEDHACK:2.0" — set game speed to 2x
- "SPEEDHACK:1.0" — restore normal game speed
- "SHOW_MESSAGE:Hello from AI" — display a message in Cheat Engine
- "AUTO_ASSEMBLE:[ENABLE]\nalloc(newmem,2048)\n" — run an auto-assemble script

Troubleshooting CE MCP Plugin

Plugin does not load when Cheat Engine starts

Verify the DLL is in the correct plugins subdirectory of your Cheat Engine installation. Also check that the DLL was compiled for Win32 (32-bit) to match the Cheat Engine architecture — a 64-bit DLL will not load in a 32-bit CE process.

Plugin loads but cannot connect to the AI server

Ensure your AI server backend is running and listening on 127.0.0.1:8888 before launching Cheat Engine. Check Windows Firewall is not blocking the connection. Verify the aiServerIP and aiServerPort values in the compiled DLL match your server.

Compilation fails with missing Winsock2 headers

In Visual Studio, ensure the Windows SDK is installed via the Visual Studio Installer. Add ws2_32.lib to the project's Linker > Input > Additional Dependencies, and include <winsock2.h> before <windows.h> in the source files.

Frequently Asked Questions about CE MCP Plugin

What is CE MCP Plugin?

CE MCP Plugin is a Model Context Protocol (MCP) server that ce mcp plugin是一个cheat engine插件,它实现了model context protocol (mcp),允许ai模型与cheat engine进行交互。通过这个插件,ai可以使用cheat engine的各种功能,如内存读写、进程管理等。 It connects AI assistants to external tools and data sources through a standardized interface.

How do I install CE MCP Plugin?

Follow the installation instructions on the CE MCP Plugin GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with CE MCP Plugin?

CE MCP Plugin works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is CE MCP Plugin free to use?

Yes, CE MCP Plugin is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Browse More Developer Tools MCP Servers

Explore all developer tools servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "ce-mcp-plugin": { "command": "npx", "args": ["-y", "ce-mcp-plugin"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use CE MCP Plugin?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides