MCP server to debug microcontrollers from Claude through OpenOCD (flash, halt/step, memory/registers, breakpoints, variables and peripheral registers by name).
Project description
OpenOCD MCP Server
Debug microcontrollers directly from Claude. This is an MCP server that drives OpenOCD, letting Claude flash firmware, control execution, and inspect a running target — and read your variables and peripheral registers by name instead of raw addresses.
Description
Once connected to a target through a debug probe (ST-Link, J-Link, CMSIS-DAP, …), Claude can:
- Flash firmware — program and verify
.elf/.bin/.heximages - Control execution — halt, resume, single-step, reset
- Inspect state — read/write CPU registers and memory
- Set breakpoints — add/remove/list hardware & software breakpoints
- Read variables by name — from your firmware's
.elfsymbols (e.g.read_variable uart_rx_count) - Read peripheral registers by name — from a CMSIS-SVD file, decoded into named bitfields (e.g.
RCC.CR,GPIOA.MODER)
The server is chip-agnostic — it works with any target OpenOCD supports; you point it at your chip's config and (optionally) SVD/ELF. It can also start OpenOCD for you and download OpenOCD automatically for your platform, so there's nothing else to install by hand.
Installation
Prerequisites: Python 3.10+, Claude Code, and a debug probe connected to your target.
Clone and install the package into a virtual environment:
git clone https://github.com/microhenrio/openocd-mcp
cd openocd-mcp
python -m venv .venv
Install it (creates the openocd-mcp command):
# Windows
.venv\Scripts\python -m pip install -e .
# macOS / Linux
.venv/bin/python -m pip install -e .
Register the server with Claude Code (user scope makes it available in every project):
# Windows
claude mcp add --scope user openocd -- "%CD%\.venv\Scripts\openocd-mcp.exe"
# macOS / Linux
claude mcp add --scope user openocd -- "$PWD/.venv/bin/openocd-mcp"
Windows shortcut: instead of the steps above you can just run
setup.bat, which creates the environment, installs the package, and registers it.
Then restart Claude Code so it loads the server. Verify with:
claude mcp list # openocd: ... ✓ Connected
OpenOCD is obtained automatically: a build for your OS/architecture is
downloaded and cached on first connect (checksum-verified). You can also fetch it
ahead of time with openocd-mcp install-openocd, or use an existing install by
setting the OPENOCD_BIN environment variable.
How to work with it
1. Point it at your chip
Each firmware project tells the server which target it's debugging. Create an
openocd-mcp.json in your project root (a template is in
openocd-mcp.example.json):
{
"target_cfg": "target/stm32g0x.cfg",
"svd_file": "path/to/STM32G0B0.svd",
"elf_file": "path/to/build/firmware.elf"
}
target_cfg/interface_cfg— OpenOCD configs (relative to its scripts dir). Defaults to an ST-Link probe; settarget_cfgfor your chip.svd_file— CMSIS-SVD file for the chip (enables peripheral registers by name).elf_file— your firmware build output (enables variables by name).
Or simply tell Claude the chip you're using and it will configure the session for
you. show_config reports the active settings at any time.
2. Talk to Claude
With the board plugged in, describe what you want — Claude picks the right tools:
| You say… | What happens |
|---|---|
| "connect and halt the target" | Starts OpenOCD if needed, attaches, halts the CPU |
| "what's the status?" | Reports running/halted and the current program counter |
"read the variable sensor_value" |
Looks it up in the .elf and reads it off the chip |
"set motor_enabled to 1" |
Writes the variable by name |
"read GPIOA.MODER" |
Reads the register and decodes its named bitfields |
"list the RCC registers" |
Lists registers from the SVD |
"break at 0x08001234, then reset and run" |
Sets a breakpoint and resets |
"flash build/firmware.elf and run it" |
Programs, verifies, and restarts |
"dump 64 bytes of RAM at 0x20000000" |
Reads memory |
You don't call tools by name — describe the goal and Claude maps it to the underlying tools.
The target must be halted to read registers, memory, or variables — Claude halts first when needed. The first
connectof a session starts OpenOCD automatically.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file openocd_mcp-0.1.0.tar.gz.
File metadata
- Download URL: openocd_mcp-0.1.0.tar.gz
- Upload date:
- Size: 17.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6efd8f48f8f4dcdba2d54f661e8b3151aab6b76b5bd3141ee3717cf0295db6b4
|
|
| MD5 |
095f9eb7ef55cd22386b9560947e52c5
|
|
| BLAKE2b-256 |
dda1cfbf00d4d097c31c354cbe1cc7ae22ceeb5e38904083a69ec97a35754831
|
Provenance
The following attestation bundles were made for openocd_mcp-0.1.0.tar.gz:
Publisher:
release.yml on microhenrio/openocd-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
openocd_mcp-0.1.0.tar.gz -
Subject digest:
6efd8f48f8f4dcdba2d54f661e8b3151aab6b76b5bd3141ee3717cf0295db6b4 - Sigstore transparency entry: 2008968396
- Sigstore integration time:
-
Permalink:
microhenrio/openocd-mcp@1e2057e0842f0e711ebd904aa3865cf18af08e86 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/microhenrio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@1e2057e0842f0e711ebd904aa3865cf18af08e86 -
Trigger Event:
push
-
Statement type:
File details
Details for the file openocd_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: openocd_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 21.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab7cdd014d988028205cd6ac506d38af24d4c609d35fad5330e710b4388651dd
|
|
| MD5 |
854139b47c34dcac53ff9edef8771355
|
|
| BLAKE2b-256 |
ec0c946fab85c9f79f0ac857a1f203064ab5354cc5f9d6f10a891cba72125405
|
Provenance
The following attestation bundles were made for openocd_mcp-0.1.0-py3-none-any.whl:
Publisher:
release.yml on microhenrio/openocd-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
openocd_mcp-0.1.0-py3-none-any.whl -
Subject digest:
ab7cdd014d988028205cd6ac506d38af24d4c609d35fad5330e710b4388651dd - Sigstore transparency entry: 2008968569
- Sigstore integration time:
-
Permalink:
microhenrio/openocd-mcp@1e2057e0842f0e711ebd904aa3865cf18af08e86 -
Branch / Tag:
refs/tags/v0.1.0 - Owner: https://github.com/microhenrio
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@1e2057e0842f0e711ebd904aa3865cf18af08e86 -
Trigger Event:
push
-
Statement type: