cheat-engine-server-python vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
cheat-engine-server-python by bethington | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 49 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | 开发者工具安全其它 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | Python | TypeScript |
| 最近提交 | 4 个月前 | 本月 |
cheat-engine-server-python · 概述
MCP Cheat Engine Server 提供安全的只读内存访问,用于调试和分析。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
cheat-engine-server-python · 使用场景
- 通过检查内存内容而不修改它们来调试应用程序
- 通过对目标进程进行安全的内存分析来进行安全研究
- 通过内存检查来进行游戏模组和了解游戏机制
- 用于学习计算机内存和逆向工程的教育目的
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
cheat-engine-server-python · 安装
安装
前置要求
- Windows 10/11(推荐 64 位)
- Python 3.9 或更高版本
- 管理员权限(用于内存访问)
- Claude Desktop 或兼容的 MCP 客户端
步骤
- 克隆或下载项目到您的计算机
- 以管理员身份打开 PowerShell
- 导航到服务器目录
- 安装依赖项:
pip install -r requirements.txt - 测试服务器:
python server/main.py --test - 启动服务器:
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。
everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything