From 6922166e3cfa8d5e50db84bfa1cd1cc4b0488e3e Mon Sep 17 00:00:00 2001 From: IChooseYou Date: Fri, 13 Feb 2026 07:34:08 -0700 Subject: [PATCH] Add MCP bridge connection instructions to README --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e89cf6d..c1cc4c1 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,17 @@ This tool helps you inspect raw bytes and interpret them as types (structs, arra ## State -- MCP (Model Context Protocol) bridge (McpBridge) added. Server starts by default but can be stopped in File menu. Exposes the tools functionality and also has UI fallback if something new has been introduced. +- MCP (Model Context Protocol) bridge via `ReclassMcpBridge.exe`. The server starts by default and can be stopped from the File menu. It exposes all tool functionality to any MCP-compatible client (e.g. Claude Code) and falls back to UI prompts when the client requests something not yet covered by tools. To connect, add this to your MCP client config (e.g. `.mcp.json`): + ```json + { + "mcpServers": { + "ReclassMcpBridge": { + "command": "path/to/build/ReclassMcpBridge.exe", + "args": [] + } + } + } + ``` - Plugin system is partially implemented. Some UI bugs exist. - Vector/Matrix improvements have been made but are not entirely complete. - When attached to a live process memory is read on a background thread and changed bytes get highlighted in real time.