serial-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., "@serial-mcpStart buffering output from /dev/ttyUSB0"
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.
serial-mcp
An MCP server that lets Claude (or any MCP client) read the serial output of a device.
Why this exists
Reading serial logs is a blocking, long-running operation that streams output indefinitely. An AI agent cannot simply open a serial port and wait for it to close, because it never closes. The agent would hang, unable to do anything else while the port is open.
This MCP server solves the problem by opening the serial port in the background via pyserial-asyncio, buffering output line-by-line, and letting the agent poll for new lines on demand. The agent can start monitoring, go do other work, and come back to read the logs whenever it needs to — checking for crash backtraces, boot messages, sensor readings, or any other serial output.
Related MCP server: embedded-serial-mcp
Installation
pip install -e ".[dev]"Requires Python 3.10+.
Configuration
Environment variable | Default | Description |
| unlimited | Maximum number of lines kept in the buffer. When exceeded, the oldest lines are discarded first. |
MCP Tools
The server exposes three tools over stdio transport:
start_buffering(device, baudrate=115200)
Opens the serial port at the given path (e.g. /dev/ttyUSB0) and baud rate. If a monitor is already running, it is stopped first and replaced. Output begins accumulating in memory immediately.
next_chunk(nlines=50, pattern=None)
Returns the next batch of buffered lines the agent hasn't seen yet. Each response includes a status header:
[lines=12 remaining=0 running=true]
I (324) cpu_start: Starting scheduler on PRO CPU.
I (330) main_task: Started on CPU0
...lines— number of lines in this response (when filtered, showsmatched/total)remaining— unread lines still in the buffer after this batchrunning— whether the serial reader is still alive
The optional pattern parameter filters output using a regular expression. Only lines matching the pattern are returned. This is useful for reducing token consumption when dealing with verbose output:
# Only show ERROR lines
next_chunk(100, pattern="ERROR")
# Show temperature readings
next_chunk(50, pattern=r"Temperature: \d+\.\d+")Call this repeatedly to drain all output. When there is nothing new, it returns (no new output).
stop_buffering()
Closes the serial port. The buffer is preserved, so next_chunk can still be called to read any remaining output.
Usage with Claude Code
Add the server to your MCP configuration (e.g. .mcp.json in your project):
{
"mcpServers": {
"serial-mcp": {
"command": "serial-mcp"
}
}
}Then Claude can use it as part of a natural workflow:
Start the monitor via
start_buffering("/dev/ttyUSB0")Do other work — edit source files, review code, build, flash, etc.
Poll for logs via
next_chunk()to check what the device printedStop the monitor via
stop_buffering()when done
Running tests
pytest tests/ -vAll tests use mocked serial connections — no hardware required.
How it works
The serial port is opened via
pyserial-asynciousingopen_serial_connection(url=device, baudrate=baudrate).A background
asyncio.Taskreads the port line-by-line and appends to an in-memory list.next_chunk()is a simple cursor-based read — it slices the list from where the agent last left off and advances the cursor. No locking is needed because everything runs in a single-threaded asyncio event loop.UTF-8 decoding uses
errors="replace"to handle garbled serial data gracefully.
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.
Latest Blog Posts
- 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/galderic/serial-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server