MCP Servers

模型上下文协议服务器、框架、SDK 和模板的综合目录。

A mcp server to interact with a Kernel Driver in use with Cheat Development

创建于 4/10/2026
更新于 about 5 hours ago
Repository documentation and setup instructions

evoke-mcp

small mcp server for low-level memory tooling.

it talks to your kernel driver and exposes a few simple routines over HTTP:

small feature list

  • get_base_address
  • read_memory
  • write_memory
  • can be expanded based on your driver.
    • in theroy you can do like DLL injection, based on your prompt.

stack

  • C++
  • Windows APIs
  • JSON-RPC style MCP handlers
  • cpp-httplib for transport

notes

  • currently set up around FortniteClient-Win64-Shipping.exe in main.cpp.
  • server listens on 127.0.0.1:8888. and uses streamable http for the MCP responses.
  • intended for local tooling / reversing workflows.
  • this can be paired really well with mrexodia's IDA MCP

examples

Fortnite

build

open the .vcxproj in Visual Studio and build for your target config.

快速设置
此服务器的安装指南

安装命令 (包未发布)

git clone https://github.com/vmpprotect/evoke-mcp
手动安装: 请查看 README 获取详细的设置说明和所需的其他依赖项。

Cursor 配置 (mcp.json)

{ "mcpServers": { "vmpprotect-evoke-mcp": { "command": "git", "args": [ "clone", "https://github.com/vmpprotect/evoke-mcp" ] } } }