Skip to main content
Glama
propfire11

mcp-stm32-server

by propfire11

🔌 MCP STM32 Controller Server / MCP STM32 控制器服务器

Python MCP License

Controla un microcontrolador STM32 mediante el MCP (Model Context Protocol). Los asistentes de IA pueden leer/escribir GPIO, controlar un LED, leer un valor ADC y manejar una pantalla OLED, todo mediante lenguaje natural.

通过 MCP(Model Context Protocol) 协议控制 STM32 微控制器。AI 助手可以调用本服务提供的工具来读写 STM32 的 GPIO、控制 LED、读取 ADC、操作 OLED 屏幕等。


Arquitectura

AI Assistant (Claude) ←→ MCP Server (this program) ←→ UART ←→ STM32 firmware

La comunicación utiliza un protocolo de líneas JSON: un objeto JSON por línea, terminado con \n.


Inicio rápido

1. Instala las dependencias

pip install -r requirements.txt

2. Conecta el hardware

  • STM32 USART1: PA9 (TX), PA10 (RX)

  • Conecta al PC mediante un módulo USB-TTL

  • Graba el firmware correspondiente en el dispositivo (implementa el protocolo de líneas JSON que se describe a continuación)

3. Inicia el servidor

# auto-detect the serial port
python main.py

# specify a serial port
python main.py --port COM3

# SSE mode (HTTP service)
python main.py --sse --port COM3

Herramientas

Herramienta

Descripción

Argumentos

ping

comprueba si el STM32 está en línea

set_led

establece el brillo del LED

brightness: 0-100

get_led

lee el brillo actual del LED

read_pin

lee un nivel de GPIO

pin: "PA0", "PC13", ...

write_pin

establece un nivel de GPIO

pin + value: 0/1

read_adc

lee un valor del ADC

channel: 0-2

oled_clear

limpia la pantalla OLED

oled_print

imprime texto en el OLED

x + y + text

Recursos

URI

Descripción

stm32://status

estado de la conexión, información del puerto, tiempo de actividad


Configuración

Mediante variables de entorno o argumentos de línea de comandos:

Argumento

Variable de entorno

Predeterminado

Descripción

--port

STM32_PORT

detección automática

puerto serie

--baud

115200

velocidad de baudios

--sse

false

modo SSE

--sse-port

8000

puerto SSE


Integración con Claude Desktop

Edita claude_desktop_config.json:

{
  "mcpServers": {
    "stm32": {
      "command": "python",
      "args": ["C:/path/to/mcp-stm32-server/main.py", "--port", "COM3"],
      "env": {}
    }
  }
}

Protocolo de comunicación (JSON-lines)

Cada línea es un objeto JSON independiente. El firmware solo tiene que responder con un objeto JSON que tenga el mismo id.

Solicitud:

{"id":1,"cmd":"set_led","args":{"brightness":75}}

Respuesta correcta:

{"id":1,"status":"ok","data":{"brightness":75}}

Respuesta de error:

{"id":1,"status":"error","msg":"brightness must be 0-100"}

Contrato del firmware: tras cada solicitud recibida, responde con una línea JSON que lleve el mismo id, junto con status ("ok" / "error") y data o msg. Las líneas del registro de arranque que no sean JSON válido se omiten automáticamente por el cliente.


Licencia

Licencia MIT.


架构

AI 助手 (Claude) ←→ MCP Server (本程序) ←→ 串口 ←→ STM32 固件

通信使用 JSON 行协议,每行一个 JSON 对象,以 \n 结尾。


快速开始

1. 安装依赖

pip install -r requirements.txt

2. 连接硬件

  • STM32 的 USART1:PA9(TX),PA10(RX)

  • 通过 USB-TTL 模块连接电脑

  • 在设备端烧录实现下述 JSON 行协议的配套固件

3. 启动服务

# 自动检测串口
python main.py

# 指定串口
python main.py --port COM3

# SSE 模式(HTTP 服务)
python main.py --sse --port COM3

工具列表

工具

说明

参数

ping

检测 STM32 在线状态

set_led

设置 LED 亮度

brightness: 0-100

get_led

读取 LED 亮度

read_pin

读取 GPIO 电平

pin: "PA0", "PC13" 等

write_pin

设置 GPIO 电平

pin + value: 0/1

read_adc

读取 ADC 值

channel: 0-2

oled_clear

清空 OLED 屏幕

oled_print

在 OLED 上显示文字

x + y + text

资源

URI

说明

stm32://status

连接状态、串口信息、运行时间


配置

通过环境变量或命令行参数:

参数

环境变量

默认值

说明

--port

STM32_PORT

自动检测

串口号

--baud

-

115200

波特率

--sse

-

false

SSE 模式

--sse-port

-

8000

SSE 端口


与 Claude Desktop 集成

编辑 claude_desktop_config.json

{
  "mcpServers": {
    "stm32": {
      "command": "python",
      "args": ["C:/path/to/mcp-stm32-server/main.py", "--port", "COM3"],
      "env": {}
    }
  }
}

协议格式(JSON 行)

每一行是一个独立的 JSON 对象。固件只需回一个 id 相同的 JSON 行即可。

请求:

{"id":1,"cmd":"set_led","args":{"brightness":75}}

成功响应:

{"id":1,"status":"ok","data":{"brightness":75}}

错误响应:

{"id":1,"status":"error","msg":"brightness must be 0-100"}

固件约定:收到每条请求后,回一行包含相同 id 的 JSON,含 status"ok" / "error")以及 datamsg。启动时的非 JSON 日志行会被客户端自动跳过。


许可证

MIT License。

-
license - not tested
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

  • Connect AI assistants to GitHub - manage repos, issues, PRs, and workflows through natural language.

  • A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…

  • LLM chat, text summarization and AI image generation

View all MCP Connectors

Latest Blog Posts

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/propfire11/mcp-stm32-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server