Chiplab
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., "@ChiplabSet up and run the stm32f4-discovery example"
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.
Chiplab
Simulate & validate firmware on virtual instances of real chips, straight from your AI coding agent — no hardware.
Chiplab is a hosted MCP service. Your AI coding agent connects to it, uploads compiled firmware, runs it on a virtual instance of a real microcontroller, and reads back the UART output. You don't drive the toolchain — your agent does.
We're building the next way to develop chips, in the open and early.
Today it runs Hello world! on STM32 and Nordic boards; a lot more is on the way — see veecle.ai.
Try it, poke at it, and tell us what you'd like to see.
Quickstart
Create a free account at veecle.ai (no credit card).
Connect your agent to the Chiplab MCP server.
git clone https://github.com/veecle/chiplab && cd chiplab, then tell your agent:"Set up Chiplab and run the stm32f4-discovery example on it."
Your agent reads AGENTS.md, installs what it needs, builds the firmware, uploads it, runs it on the virtual board, and reports Hello world! back from the chip's UART.
That's the whole loop.
Related MCP server: serial-mcp
Connect your agent
Chiplab is an HTTP MCP server at https://chiplab.veecle.ai/mcp.
Most clients take the standard mcpServers schema:
{
"mcpServers": {
"chiplab": {
"type": "http",
"url": "https://chiplab.veecle.ai/mcp"
}
}
}On first use your client opens a browser to sign in. To verify, ask your agent to call Chiplab's discovery/help tool with no arguments.
If you cloned this repo, the server is already configured via .mcp.json — Claude Code will prompt you to trust it.
Otherwise:
claude mcp add --transport http chiplab https://chiplab.veecle.ai/mcpUse the mcpServers block above in claude_desktop_config.json or .cursor/mcp.json.
Same block in .vscode/mcp.json, but under a servers key instead of mcpServers.
TOML in ~/.codex/config.toml:
[mcp_servers.chiplab]
url = "https://chiplab.veecle.ai/mcp"Then sign in with codex mcp login chiplab.
How it works
The contract is framework-agnostic: your agent builds an ELF → uploads it → runs it on the target board → reads the captured UART output. Runs return synchronously and are bounded to a fixed amount of virtual time.
This repo ships a ready-to-run example for every supported board, grouped by framework — bare-metal (Rust, vendor HAL), embassy-rust (Embassy async), zephyr-os (Zephyr RTOS, C), and freertos (FreeRTOS, C).
The full board × framework matrix is in supported-boards.md.
Toolchain and build details live in each framework's directory (examples/<framework>/README.md for humans, AGENTS.md for agents) — your agent finds them on its own.
Prefer building by hand?
Each framework README has the exact commands.
To run your own firmware, build an ELF for a supported board and ask your agent to upload and run it the same way.
Contributing
Adding a board example is the easiest way in: mirror an existing example for the same framework and add a row to supported-boards.md.
All conventions live in AGENTS.md and each framework's AGENTS.md.
New chip, OS, or peripheral support is server-side — open a request instead of adding an example for an unsupported board.
Found a bug? Missing a chip? Tell us here.
This is Chiplab's public home — bugs, feature ideas, and chip/OS/peripheral requests all belong in this repo's issues. Requests really do shape the roadmap — see veecle.ai/roadmap for what's planned, or come say hi on Discord.
License
MIT © 2026 Veecle GmbH.
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
- AlicenseAqualityCmaintenanceStateful MCP server for driving debug probes (J-Link) to flash, debug, and inspect embedded targets. Enables AI agents to perform flash, memory, breakpoint, and ELF/SVD-aware operations conversationally.Last updated417MIT
- AlicenseAqualityAmaintenanceMCP server that lets LLMs talk to serial devices: microcontrollers, routers, modems, embedded Linux, anything with a UART.Last updated234MIT
- FlicenseAqualityBmaintenanceA headless MCP server that enables AI tools (like Claude Code) to read and analyze serial logs from embedded boards (ESP32, STM32) for firmware debugging, with read-only tools for log retrieval and a built-in web viewer.Last updated6
- Alicense-qualityBmaintenanceAn MCP server that enables agents to build, test, and simulate complete ik firmware projects for 8-bit AVR microcontrollers, using real compilation and simulation tools.Last updated1Apache 2.0
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
An MCP server for Arcjet - the runtime security platform that ships with your AI code.
Cloud-hosted MCP server for durable AI memory
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/veecle/chiplab'
If you have feedback or need assistance with the MCP directory API, please join our Discord server