loading…
Search for a command to run...
loading…
Enables LLMs to communicate with hardware devices via serial ports. Provides tools for listing ports, opening/closing connections, reading/writing data, and con
Enables LLMs to communicate with hardware devices via serial ports. Provides tools for listing ports, opening/closing connections, reading/writing data, and controlling serial signals.
A Model Context Protocol (MCP) server for serial port communication, enabling LLMs to interact with hardware devices via serial connections.
# Install from PyPI (when published)
pip install serial-mcp-new
# Run with stdio transport (default, for local use)
serial-mcp
"mcpServers": {
"ssh-mcp": {
"command": "C:\\Users\\DELL\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.11_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python311\\Scripts\\serial-mcp.exe",
"args": [],
"env": {}
}
},
| Tool | Description |
|---|---|
serial_list_ports |
List all available serial ports |
serial_open |
Open a serial port connection |
serial_close |
Close a serial port connection |
serial_write |
Write data to a serial port |
serial_read |
Read data from a serial port |
serial_set_signals |
Set control signal states |
serial_get_signals |
Read current signal states |
serial_list_connections |
List all active connections |
List available ports:
serial_list_ports()
Open a connection:
serial_open(port="COM3", baud_rate=115200)
Write data:
serial_write(connection_id="conn_1", data="Hello, device!")
Read response:
serial_read(connection_id="conn_1", timeout=2.0)
Close when done:
serial_close(connection_id="conn_1")
MIT
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"serial-mcp-server": {
"command": "npx",
"args": []
}
}
}PRs, issues, code search, CI status
Database, auth and storage
Reference / test server with prompts, resources, and tools.
Secure file operations with configurable access controls.