Dynamic library-less MCP server to support use as a plugin (without ASP.net hosting required)

I ended up writing this as the primary MCP library from https://modelcontextprotocol.io/ tends to require ASP.net core hosting. Because of this requirement you are unable to embed that functionality very easily into a DLL that is used for a plugin. I build this POC server that supports .NET framework (not core) so AI can be …

Creating an MCP (Memory Control & Patch) Service with x64dbg and C#

In reverse engineering and dynamic analysis, tools like x64dbg provide an excellent foundation for inspecting, modifying, and understanding binary behavior at runtime. But what if you want automated control over memory patching, module inspection, or call stack introspection — all in a structured, programmable service? That’s exactly what I’m building: an MCP (Memory Control & …