bitslicer-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@bitslicer-mcpAttach to PID 4242 and scan for integer 100"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
bitslicer-mcp
A safety-bounded, macOS ARM64 bridge that lets Codex use Bit Slicer's real memory-inspection engine through the Model Context Protocol (MCP). It does not automate the GUI: a TypeScript stdio server talks over a user-only Unix socket to a separately built Bit Slicer MCP application.
Authorization requirement: Use this project only with software and processes you own or are explicitly authorized to assess. The bridge is read-only by default. Memory writes require explicit opt-in at both server layers, approval of the target, and a short-lived edit session. This project does not provide injection, target code execution, stealth, anti-cheat bypass, arbitrary shell access, unrestricted process control, or automatic page-protection changes.
Status
The read-only native integration is implemented against pinned upstream Bit Slicer commit 035ca123781152a97245d2f8b9d1a8149202386d. Process listing, explicit attachment, VM regions, bounded reads/dumps, typed exact scans, exact and relative refinement, pointer-chain resolution, loaded Mach-O images, and bounded ARM64 disassembly call verified Bit Slicer source APIs. All real-target writes remain disabled.
The build is named Bit Slicer MCP, uses bundle ID com.krisgnyc.BitSlicerMCP, and is emitted under this repository. It neither changes nor replaces /Applications/Bit Slicer.app.
flowchart LR
C["Codex / ChatGPT desktop"] -->|"MCP over stdio"| M["TypeScript MCP server"]
M -->|"newline JSON + launch token"| U["0600 Unix socket"]
U --> N["Native companion in Bit Slicer fork"]
N --> B["Pinned, inspected Bit Slicer internal abstractions"]
N --> P["Native target approval"]
M -. local tests .-> K["In-memory mock bridge"]Related MCP server: hopper-mcp
What is included
16 MCP tools covering connection health, processes, explicit attachment, regions, bounded reads, value scans and filtering, pointer chains, loaded Mach-O images, bounded dumps, ARM64 disassembly, and controlled edit sessions.
A newline-delimited JSON protocol with a per-launch token and checked request/response IDs.
A Swift socket-listener skeleton for protocol development plus a real Objective-C overlay linked into a pinned Bit Slicer source checkout.
A complete mock target and integration tests for attach/read/scan/patch/apply/undo behavior.
Protocol notes, threat model, tool reference, integration plan, and roadmap in
docs/.
New to MCP? Follow the Mac-specific TUTORIAL.md, an absolute beginner's guide with copy-and-paste Codex prompts for attaching, scanning, refining, reading, and disassembling.
Requirements
Apple Silicon Mac, macOS 13 or later
Node.js 20 or later and npm
Xcode 16 or newer for the integrated application build
Build and test
cd /absolute/path/to/bitslicer-mcp
npm install
npm run check
./scripts/build-bit-slicer-mcp.shnpm run check runs the TypeScript/mock and Swift-package tests. The build script obtains the pinned upstream checkout under ignored upstream/, applies the reviewed overlay, builds arm64, ad-hoc signs a distinct product, and emits build/Bit Slicer MCP/Bit Slicer MCP.app.
Try it locally with the mock bridge
Generate a fresh token for this launch and keep the same shell environment for both processes:
cd /absolute/path/to/bitslicer-mcp
export BITSLICER_SESSION_TOKEN="$(openssl rand -hex 32)"
export BITSLICER_SOCKET_PATH="/tmp/bitslicer-mcp-$UID.sock"
export BITSLICER_ENABLE_WRITES=false
npm run build
npm run mockThe mock process is PID 4242; attachment still requires a meaningful authorizationReason. Set BITSLICER_ENABLE_WRITES=true in both bridge and MCP-server environments only for an authorized patching exercise.
Connect Codex exactly
Codex supports local stdio MCP servers and stores shared configuration in ~/.codex/config.toml or a trusted project's .codex/config.toml. See the official MCP configuration documentation.
Build the project once:
cd /absolute/path/to/bitslicer-mcp npm install && npm run buildStart the integrated app with the automated launcher. On this Mac:
cd /Volumes/Ex-SSD/REV-ENG/bitslicer-mcp npm run launchAlternatively, double-click
Launch Bit Slicer MCP.commandin Finder. The app generates a fresh token, writes a mode-0600session descriptor under the current user's Application Support directory, and removes it when the app exits. The MCP server rereads it for every request, so relaunching the bridge does not require restarting Codex. TheMCP ●menu-bar item shows listener/target status.Add this exact table to
~/.codex/config.toml, replacing both absolute paths:[mcp_servers.bitslicer] command = "/absolute/path/to/node" args = ["/absolute/path/to/bitslicer-mcp/dist/src/server.js"] default_tools_approval_mode = "writes" startup_timeout_sec = 10 tool_timeout_sec = 75 enabled = trueFind the Node path with
command -v node. No secret is stored in Codex configuration.Restart the Codex app/CLI host once after installing or changing this entry. Future Bit Slicer MCP launches do not require a Codex restart. Run
codex mcp listor type/mcpin the Codex TUI to confirm the server, then callpingbefore listing processes.Call
attachwith a PID and an explicit authorization reason. Bit Slicer MCP shows a local approval prompt before acquiring the task. Real-target writes are not available in this build even if the environment flag is changed.
See docs/codex-usage.md for safe prompting and troubleshooting.
Repository layout
src/ TypeScript MCP server, client, validation, and mock bridge
test/ Node unit and Unix-socket integration tests
native/ Swift package and Bit Slicer integration seam
integration/ Reviewed Objective-C overlay using verified upstream APIs
scripts/ Reproducible pinned-source preparation and app build
protocol/ Machine-readable JSON Schema
docs/ Architecture, protocol, threat model, tool reference, and roadmapDesign boundaries
Socket access is local and file mode
0600; every request also carries a high-entropy token generated automatically by the native app for that launch. Its session descriptor is stored in a mode-0700directory with mode-0600permissions.A target must be explicitly attached and approved before target operations.
Reads, dumps, pointer depth, scan results, disassembly, and patch sizes are bounded.
Dumps are returned as data; neither MCP nor bridge exposes arbitrary filesystem paths.
The integrated app exposes no write primitive and never changes page protections.
Patch preview compares expected bytes; apply compares them again and consumes a one-time confirmation. Undo also compares the post-patch bytes before restoring.
License
MIT. This repository is independent and does not include Bit Slicer source code.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityBmaintenanceA Linux-native MCP server that gives AI assistants direct access to DMA-based memory operations for memory inspection, process analysis, reverse engineering, and game engine SDK extraction via natural language.13AGPL 3.0
- Alicense-qualityDmaintenanceAn MCP server providing LLM clients with structured, transaction-safe access to Hopper-derived reverse-engineering snapshots, enabling binary analysis without the disassembler in the model's context window.1MIT
- Flicense-qualityBmaintenanceA local, privacy-first MCP server that orchestrates Ghidra, Binary Ninja, x64dbg, and system tools to provide AI assistants with powerful binary analysis capabilities.
- Alicense-qualityAmaintenanceA macOS-native MCP server that provides AI hosts with fresh workspace state, bounded context, and retained execution evidence, avoiding collapsing operations into shell strings.1521Apache 2.0
Related MCP Connectors
Security scanner for MCP servers. Detect vulnerabilities, prompt injection, and tool poisoning.
Person-owned, portable AI memory as a remote MCP server, readable and writable by any MCP client.
Scans MCP servers for tool poisoning, prompt injection and supply chain risks.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/krisgnyc/bitslicer-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server