settings — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited settings (MCP Server) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
基于 pymem 的内存扫描与修改 MCP 服务器。
通过 MCP 协议将内存读写、扫描、特征码搜索等能力暴露给 AI Agent,实现自然语言驱动的内存修改。
| 工具 | 说明 |
|---|---|
list_processes | 列出运行中的进程 |
attach_process | 附加到目标进程 |
detach_process | 断开进程连接 |
get_process_info | 获取进程详细信息和模块列表 |
read_memory | 读取指定地址的值 |
write_memory | 写入值到指定地址 |
scan_memory_first | 首次扫描(全内存搜索) |
scan_memory_next | 再次扫描(缩小范围) |
scan_memory_filter | 条件过滤(大于/小于等) |
write_scan_results | 批量写入扫描结果 |
get_scan_results | 查看扫描结果及当前值 |
scan_pattern | AOB/特征码扫描(支持通配符) |
get_module_base | 获取模块基地址 |
read_pointer_chain | 多级指针链读取 |
write_pointer_chain | 多级指针链写入 |
dump_memory | 内存转储(Hex + ASCII) |
freeze_address | 冻结地址值 |
unfreeze_address | 解除冻结 |
apply_frozen | 执行冻结写入 |
list_frozen | 列出冻结列表 |
int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double string bytes
git clone https://github.com/miloira/MemoryScaner.git
cd MemoryScaner
pip install -e .pip install memory-scanner-mcp需要 Python 3.10+,仅支持 Windows。
memory-scanner-mcppython -m memory_scanner推荐使用 uvx(无需手动安装):
{
"mcpServers": {
"memory-scanner": {
"command": "uvx",
"args": ["memory-scanner-mcp"]
}
}
}也可以先 pip install 后直接使用命令:
{
"mcpServers": {
"memory-scanner": {
"command": "memory-scanner-mcp"
}
}
}或者使用 Python 模块方式:
{
"mcpServers": {
"memory-scanner": {
"command": "python",
"args": ["-m", "memory_scanner"]
}
}
}MemoryScaner/
├── pyproject.toml # 项目配置与依赖管理
├── README.md
├── LICENSE
└── src/
└── memory_scanner/
├── __init__.py # 包初始化与版本号
├── __main__.py # python -m memory_scanner 入口
└── server.py # MCP 服务器实现(所有工具定义)典型的内存修改流程(以游戏修改为例):
# 克隆项目
git clone https://github.com/miloira/MemoryScaner.git
cd MemoryScaner
# 创建虚拟环境
python -m venv .venv
.venv\Scripts\activate
# 安装开发依赖(可编辑模式)
pip install -e .apply_frozen 来维持MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.