MCP Catalogs
首页

cheat-engine-server-python vs sequentialthinking

并排对比,帮你在这两个 MCP server 之间做选择。

cheat-engine-server-python
by bethington
sequentialthinking
by modelcontextprotocol
Stars★ 49★ 85,748
30天用量
综合分4475
官方
分类
开发者工具安全其它
AI / LLM 工具开发者工具效率工具
实现语言PythonTypeScript
最近提交4 个月前本月

cheat-engine-server-python · 概述

MCP Cheat Engine Server 提供安全的只读内存访问,用于调试和分析。

sequentialthinking · 概述

Sequential Thinking MCP 服务器通过逐步推理支持动态问题解决。

cheat-engine-server-python · 使用场景

  • 通过检查内存内容而不修改它们来调试应用程序
  • 通过对目标进程进行安全的内存分析来进行安全研究
  • 通过内存检查来进行游戏模组和了解游戏机制
  • 用于学习计算机内存和逆向工程的教育目的

sequentialthinking · 使用场景

  • 规划复杂系统迁移并进行风险评估
  • 需要逐步分析的调试生产环境问题
  • 比较具有条件分支的架构选项

cheat-engine-server-python · 安装

安装

前置要求
  • Windows 10/11(推荐 64 位)
  • Python 3.9 或更高版本
  • 管理员权限(用于内存访问)
  • Claude Desktop 或兼容的 MCP 客户端
步骤
  1. 克隆或下载项目到您的计算机
  2. 以管理员身份打开 PowerShell
  3. 导航到服务器目录
  4. 安装依赖项:pip install -r requirements.txt
  5. 测试服务器:python server/main.py --test
  6. 启动服务器:python server/main.py
Claude Desktop 配置

添加到您的 Claude Desktop 配置文件(%APPDATA%\Claude\claude_desktop_config.json):

{
  "mcpServers": {
    "cheat-engine": {
      "command": "python",
      "args": ["路径\\到\\服务器\\main.py", "--debug", "--read-only"],
      "cwd": "路径\\到\\cheat-engine-server-python"
    }
  }
}

添加配置后重启 Claude Desktop。

sequentialthinking · 安装

安装

**Claude Desktop**: 添加到您的 claude_desktop_config.json 文件中:

{
  "mcpServers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**VS Code**: 使用安装按钮或手动配置:

{
  "servers": {
    "sequential-thinking": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-sequential-thinking"
      ]
    }
  }
}

**Docker**:

{
  "mcpServers": {
    "sequentialthinking": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "mcp/sequentialthinking"
      ]
    }
  }
}
对比内容由 README + GitHub 公开数据自动生成,定期更新。