MCP Catalogs
首页

cheat-engine-server-python vs filesystem

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

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

cheat-engine-server-python · 概述

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

filesystem · 概述

功能丰富的文件系统操作 MCP 服务器,具有动态目录访问控制功能。

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

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

filesystem · 使用场景

  • 使 AI 模型能够读取和写入项目文件进行开发
  • 允许 Claude 或其他 MCP 客户端浏览和分析代码库
  • 为内容生成提供对特定目录的安全沙盒访问

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。

filesystem · 安装

安装

使用 NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

使用 Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code 扩展

点击 README 中的安装按钮直接在 VS Code 中安装。

对比内容由 README + GitHub 公开数据自动生成,定期更新。