CE MCP Backend
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@CE MCP BackendList running processes and show memory regions for PID 8821."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
CE MCP Backend
Structured Cheat Engine 7.7 dynamic analysis through MCP for explicitly authorized Windows processes. The backend excludes arbitrary Lua, shell commands, injection, and memory writes.
The standalone Windows release requires neither Python nor a Codex plugin or skill. See CE_MCP_TOOLS.md for the tool catalog and ARCHITECTURE.md for trust boundaries.
Install
Requirements: 64-bit Windows and Cheat Engine 7.7. Extract
ce-mcp-windows-x64.zip, close all CE instances, and run:
powershell.exe -NoProfile -ExecutionPolicy Bypass `
-File .\install.ps1 `
-CheatEngineDir "C:\tools\Cheat Engine"The installer creates:
Cheat Engine/
|-- autorun/
| `-- ce_mcp_bridge.lua
`-- mcp/
|-- server.exe
|-- ce-mcp-control.exe optional
|-- config.json
|-- http.token
`-- standalone runtime filesThe first install creates a random 48-byte token restricted to the installing
Windows user. Upgrades preserve config.json and http.token; use
-RotateToken only when all clients can be updated. Restart CE after install.
CE autorun owns server.exe startup and shutdown.
Related MCP server: Binary MCP Server
Connect a client
The default endpoint is http://127.0.0.1:8001/mcp. For Codex, expose the
installed token through a user environment variable and register the endpoint:
$tokenPath = "C:\tools\Cheat Engine\mcp\http.token"
$token = [IO.File]::ReadAllText($tokenPath).Trim()
[Environment]::SetEnvironmentVariable("CE_MCP_TOKEN", $token, "User")
codex mcp add cheat-engine `
--url http://127.0.0.1:8001/mcp `
--bearer-token-env-var CE_MCP_TOKENRestart Codex after changing its environment. Other Streamable HTTP clients
use the same endpoint and Authorization: Bearer <token>.
The server reads authentication from CE_MCP_TOKEN when present, otherwise
from tokenFile in config.json. It refuses HTTP startup without either.
Configuration and health
Default mcp\config.json:
{
"transport": "streamable-http",
"host": "127.0.0.1",
"port": 8001,
"tokenFile": "http.token",
"requestDeadlineMs": 5000,
"maxOutputBytes": 1048576,
"exitWhenCeExits": true
}Only 127.0.0.1, ::1, and localhost are accepted. Do not proxy or expose
this plaintext endpoint. maxOutputBytes accepts 4096 through 4194304 bytes;
oversized results return OUTPUT_LIMIT_EXCEEDED with measured and configured
sizes instead of truncated JSON.
Invoke-RestMethod http://127.0.0.1:8001/health/live
$headers = @{ Authorization = "Bearer $env:CE_MCP_TOKEN" }
Invoke-RestMethod http://127.0.0.1:8001/health/ready -Headers $headersLiveness proves only that HTTP is serving. Authenticated readiness also checks
the CE bridge through ce.status.
Use
Begin with ce.status, select and attach an explicit PID through ce.process,
and preserve returned session, generation, and debugger stop-generation values.
Close owned operations and breakpoints. Never automatically retry an
OUTCOME_UNKNOWN mutation.
structuredContent is authoritative; content is a short summary.
suggestedAction and nextActions are optional backend-authored hints, not CE
or MCP directives, and are never executed by the server.
DBK and DBVM remain disabled and are never initialized by this project. Each simultaneous CE instance requires a distinct configured HTTP port.
Optional host controller
Normal manual CE startup and shutdown remains supported. The optional controller provides terminal lifecycle operations:
& "C:\tools\Cheat Engine\mcp\ce-mcp-control.exe" status
& "C:\tools\Cheat Engine\mcp\ce-mcp-control.exe" start
& "C:\tools\Cheat Engine\mcp\ce-mcp-control.exe" stop
& "C:\tools\Cheat Engine\mcp\ce-mcp-control.exe" restartIt returns one bounded JSON object. It starts CE, never server.exe; normal
stop and restart refuse attached or unobservable state. See the
host-control contract for arguments,
exit codes, and force semantics.
Development
Python 3.10 or newer and uv are required:
uv sync --locked --group build
uv run --locked python -m unittest discover -s tests -v
powershell.exe -NoProfile -ExecutionPolicy Bypass `
-File .\scripts\build-standalone.ps1
uv run --locked python .\scripts\verify-release.py `
.\dist\ce-mcp-windows-x64
uv run --locked python .\scripts\verify-compiled.py `
--server .\dist\ce-mcp-windows-x64\mcp\server.exe `
--controller .\dist\ce-mcp-windows-x64\mcp\ce-mcp-control.exeHosted CI runs source and compiled scripted tests without CE. Controlled real-CE smoke tests are a local release gate. CE-facing changes must follow DEVELOPMENT_WORKFLOW.md.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Offline methodology engine for authorized penetration testing, CTF, and security research.
Hunt zero-days by talking to binaries. 40+ tools. Hosted, OAuth + SSO, invite: hi@byteray.ai
Run verified read-only code tools: quant diagnostics + agent-ops preflight, no source exposure.
Reasoning, code, anti-deception, memory harness MCP tools. Stdio or HTTPS api.ejentum.com/mcp
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides safe, read-only access to memory analysis and debugging functionality through the Model Context Protocol, allowing users to examine computer memory for software development, security research, and educational purposes.64MIT
- AlicenseNot gradedqualityAmaintenanceEnables AI assistants to analyze binaries, debug processes, and inspect kernel state using Ghidra, x64dbg, WinDbg, and ILSpyCmd.6Apache 2.0
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to perform low-level Windows process memory research, including process attachment, memory scanning, reading/writing, pointer chasing, remote code execution, and inline hooking via MCP tools and Lua scripting.1MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI clients to inspect live memory of a running C++ process on Windows using cdb.exe, providing tools to evaluate expressions, retrieve map entries, and enumerate containers without modifying target code.-
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/a45s67/CE-mcp-backend'
If you have feedback or need assistance with the MCP directory API, please join our Discord server