your ai debugger, vibe hacking tool
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"processhacker": {
"args": [],
"command": "C:\\absolute\\path\\to\\ProcessHackerMCP.exe"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
this is dynamic mcp server for runtime analysis and process hacking. it is like processhacker but for ai agents.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in security / developer-tools
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
MCP server for accessing Figma plugin console logs and screenshots via Cloudflare Workers or local mode
MCP server for using the GitLab API
MCP Security Weekly
Get CVE alerts and security updates for Processhacker Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
this is dynamic mcp server for runtime analysis and process hacking. it is like processhacker but for ai agents.
ProcessHackerMCP.exe and extensions/ folder.you can configure your ai agent/editor to use this server. below are the mcp_config.json (or equivalent) settings. make sure to put the absolute path to the .exe.
add this to your mcp configuration file:
{
"mcpServers": {
"processhacker": {
"command": "C:\\absolute\\path\\to\\ProcessHackerMCP.exe",
"args": []
}
}
}
go to cline settings -> mcp servers and add:
{
"mcpServers": {
"processhacker": {
"command": "C:\\absolute\\path\\to\\ProcessHackerMCP.exe",
"args": []
}
}
}
note: some editors might freeze if the mcp server sends a huge payload (e.g. reading 1GB of memory). the core now has a 2MB payload protection limit, but try to use
limitandoffsetarguments when querying big processes.
we added some enterprise-grade agent logic to stop rogue bots from nuking your host machine.
"args": [] to "args": ["--read-only"] in your mcp config. if the ai tries to write memory or suspend threads (destructive actions), the core blocks it.processhacker_audit.log. destructive actions are tagged with [WARNING: DESTRUCTIVE].ph_query_memory_regions instead of just a generic error.core is just router. all tools are in dll plugins.
if u want make stealth bypass (like vehbutnot or direct syscall):
extensions/sample_ext folder.McpToolRegistration and set isDestructive = true if your tool mutates state (writes memory, sets hooks).InitMcpExtension..dll inside extensions/ folder.new in v1.6.0: the ai agent can now write its own extensions dynamically! by using the
ext_auto_compilertool, the agent can send raw C code which the router compiles using a bundled TCC (Tiny C Compiler) and hot-loads directly into active memory. you can literally ask the ai to write its own custom bypass and it will compile itself on the fly!
if u write good stealth extension and think it can bypass anything or help others, please send pull request (pr). we need more plugins for stealth.
i was thinking about this architecture and had a weird thought:
could someone actually use this to create autonomous malware or game cheats just by writing prompts? like asking the ai: "inject here, find the decryption routine, and dump the keys as json". since the actual "malware behavior" isn't in the compiled c++ code but in the prompt text, no classic anti-virus could catch the payload statically.
and if an anti-cheat updates, the ai could just read the new memory layout and adapt its logic instantly without needing a recompile.
is this genuinely possible now or just a weird architectural nightmare? lol if u have thoughts on this, hit me up or open an issue.
educational and research purposes only. published to