An MCP server that exposes RS232 serial port connectivity
SaferSkills independently audited mcp-rs232 (MCP Server) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP server that exposes RS232 serial port connectivity
mcp-name: io.github.daedalus/mcp-rs232
pip install mcp-rs232from mcp_rs232 import list_ports, open_port, close_port, read_port, write_port
# List available ports
ports = list_ports()
print(ports)
# Open a port
open_port("COM1", baud_rate=9600)
# Write data (hex encoded)
write_port("COM1", "48656c6c6f") # "Hello"
# Read data (returns hex encoded)
data = read_port("COM1")
# Close the port
close_port("COM1")mcp-rs232 --helpserial://ports - Lists all available serial ports with their detailsserial://port/{port_name} - Get details about a specific portlist_ports_tool() - Returns list of available serial portsopen_port(port, baud_rate, ...) - Opens a serial connectionclose_port(port) - Closes a serial connectionread_port(port, size, timeout) - Reads data from port (hex encoded)write_port(port, data) - Writes hex-encoded data to portget_port_config(port) - Returns current port configurationgit clone https://github.com/daedalus/mcp-rs232.git
cd mcp-rs232
pip install -e ".[test]"
# run tests
pytest
# format
ruff format src/ tests/
# lint
ruff check src/ tests/
# type check
mypy src/~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.