cheatengine 5.8.10 → 5.8.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  English | [中文](README_CN.md)
2
2
 
3
- # CE MCP - AI-Assisted Reverse Engineering
3
+ # Cheat Engine MCP - AI-Assisted Reverse Engineering
4
4
 
5
5
  MCP bridge enabling AI assistants to directly control Cheat Engine for game hacking and reverse engineering.
6
6
 
package/README_CN.md CHANGED
@@ -1,6 +1,6 @@
1
1
  [English](README.md) | 中文
2
2
 
3
- # CE MCP - AI 辅助逆向工程
3
+ # Cheat Engine MCP - AI 辅助逆向工程
4
4
 
5
5
  MCP 桥接器,让 AI 助手直接控制 Cheat Engine 进行游戏修改和逆向工程。
6
6
 
package/ce_mcp_server.py CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env python3
2
2
  # -*- coding: utf-8 -*-
3
- """CE MCP Server v5.8.4 - Named pipe bridge to Cheat Engine"""
3
+ """Cheat Engine MCP Server - Named pipe bridge to Cheat Engine"""
4
4
 
5
5
  import concurrent.futures
6
6
  import io
@@ -274,7 +274,6 @@ class MetricsCollector:
274
274
 
275
275
  # ============ Config ============
276
276
  class Config:
277
- VERSION = "5.8.4"
278
277
  PIPE_NAME = r"\\.\pipe\{}".format(
279
278
  os.environ.get("CE_MCP_PIPE_NAME", "ce_mcp_bridge")
280
279
  )
@@ -296,7 +295,7 @@ class Logger:
296
295
  def log(msg: str, level: str = "INFO"):
297
296
  if level == "DEBUG" and not Config.DEBUG:
298
297
  return
299
- sys.stderr.write(f"[CE-MCP-{level}] {msg}\n")
298
+ sys.stderr.write(f"[CheatEngine-MCP-{level}] {msg}\n")
300
299
  sys.stderr.flush()
301
300
 
302
301
  @staticmethod
@@ -447,7 +446,7 @@ class PipeClient:
447
446
  """Get user-friendly error message based on Windows error code"""
448
447
  messages = {
449
448
  winerror.ERROR_FILE_NOT_FOUND: (
450
- "CE MCP Bridge not running. "
449
+ "Cheat Engine MCP Bridge not running. "
451
450
  "Load 'ce_mcp_bridge.lua' in CE (Table -> Show Cheat Table Lua Script -> Execute)"
452
451
  ),
453
452
  winerror.ERROR_PIPE_BUSY: "Pipe busy - another client may be connected",
@@ -724,7 +723,7 @@ class ToolRegistry:
724
723
  self._register(
725
724
  Tool(
726
725
  "ce_get_logs",
727
- "Get log entries from the CE MCP Bridge Lua side. "
726
+ "Get log entries from the Cheat Engine MCP Bridge Lua side. "
728
727
  "Returns: {entries: [{timestamp, level, category, message, data}], count}. "
729
728
  "Useful for debugging and monitoring bridge operations.",
730
729
  "get_logs",
@@ -2197,7 +2196,7 @@ class CEMCPServer:
2197
2196
  "1. Open Cheat Engine",
2198
2197
  "2. Table -> Show Cheat Table Lua Script",
2199
2198
  "3. Paste ce_mcp_bridge.lua content and Execute",
2200
- "4. Look for '[CE-MCP] Bridge started' message",
2199
+ "4. Look for '[CheatEngine-MCP] Bridge started' message",
2201
2200
  ]
2202
2201
  )
2203
2202
  elif e.winerror == winerror.ERROR_PIPE_BUSY:
@@ -2357,9 +2356,9 @@ class CEMCPServer:
2357
2356
  "result": {
2358
2357
  "protocolVersion": "2024-11-05",
2359
2358
  "capabilities": {"tools": {}},
2360
- "serverInfo": {"name": "ce-mcp-bridge", "version": Config.VERSION},
2359
+ "serverInfo": {"name": "cheatengine-mcp-bridge"},
2361
2360
  "instructions": (
2362
- "# CE MCP v5.8.4 - AI Usage Guide\n\n"
2361
+ "# Cheat Engine MCP - AI Usage Guide\n\n"
2363
2362
  "## Tool Selection Decision Tree\n\n"
2364
2363
  "### Q: Do I know the address?\n"
2365
2364
  "- NO, but can observe value changes -> ce_scan_new workflow (value hunting)\n"
@@ -2469,7 +2468,7 @@ class CEMCPServer:
2469
2468
 
2470
2469
  def run(self):
2471
2470
  """Main server loop"""
2472
- log.info(f"CE MCP Bridge v{Config.VERSION} Started. Waiting for input...")
2471
+ log.info(f"Cheat Engine MCP Bridge Started. Waiting for input...")
2473
2472
  log.info(f"Python version: {sys.version}")
2474
2473
 
2475
2474
  try:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cheatengine",
3
- "version": "5.8.10",
3
+ "version": "5.8.11",
4
4
  "description": "Cheat Engine MCP Server - AI-assisted reverse engineering bridge",
5
5
  "main": "bin/cheatengine",
6
6
  "bin": {