MCP MQTT Service for PWM Control and Device Communication
Project description
mcp2mqtt: Bridge between AI Models and Physical World
Connect AI Large Language Models to hardware devices through the Model Context Protocol (MCP).
GitHub Repository | Documentation
Features
-
Intelligent Serial Communication
- Automatic port detection and configuration
- Multiple baud rate support (default 115200)
- Real-time status monitoring and error handling
-
MCP Protocol Integration
- Full Model Context Protocol support
- Resource management and tool invocation
- Flexible prompt system
Supported Clients
mcp2mqtt supports all clients implementing the MCP protocol, including:
- Claude Desktop (Test ok)
- Continue (Should work)
- Cline (Test ok)
Quick Start
make sure you have installed uv
```bash
windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
MacOS
curl -LsSf https://astral.sh/uv/install.sh | sh
Basic Configuration
Add the following to your MCP client configuration:
{
"mcpServers": {
"mcp2mqtt": {
"command": "uvx",
"args": ["mcp2mqtt"]
}
}
}
MQTT and command Configuration
Create or modify config.yaml to configure mqtt parameters:
mqtt:
# MQTT服务器配置 - 使用EMQX公共测试服务器
broker: "broker.emqx.io" # EMQX公共测试服务器地址
port: 1883 # TCP端口
websocket_port: 8083 # WebSocket端口
ssl_port: 8883 # SSL/TLS端口
ws_ssl_port: 8084 # WebSocket Secure端口
quic_port: 14567 # QUIC端口
client_id: "mcp2mqtt_test_client" # 测试客户端ID
username: "" # 公共测试服务器不需要认证
password: "" # 公共测试服务器不需要认证
keepalive: 60
response_start_string: "CMD" # 应答的开始字符串,用于验证响应
# MCP工具定义
tools:
set_pwm:
name: "set_pwm"
description: "设置PWM频率,范围0-100"
parameters:
- name: "frequency"
type: "integer"
description: "PWM频率值(0-100)"
required: true
mqtt_topic: "mcp2mqtt/pwm"
response_topic: "mcp2mqtt/pwm/response"
response_format: "CMD PWM {frequency} OK"
Configuration File Location
The configuration file (config.yaml) can be placed in different locations depending on your needs. The program searches for the configuration file in the following order:
1. Current Working Directory (For Development)
- Path:
./config.yaml - Example: If you run the program from
C:\Projects, it will look forC:\Projects\config.yaml - Best for: Development and testing
- No special permissions required
2. User's Home Directory (Recommended for Personal Use)
- Windows:
C:\Users\YourName\.mcp2mqtt\config.yaml - macOS:
/Users/YourName/.mcp2mqtt/config.yaml - Linux:
/home/username/.mcp2mqtt/config.yaml - Best for: Personal configuration
- Create the
.mcp2mqttdirectory if it doesn't exist - No special permissions required
3. System-wide Configuration (For Multi-user Setup)
- Windows:
C:\ProgramData\mcp2mqtt\config.yaml(requires admin rights) - macOS/Linux:
/etc/mcp2mqtt/config.yaml(requires sudo/root) - Best for: Shared configuration in multi-user environments
- Create the directory with appropriate permissions
The program will use the first valid configuration file it finds in this order. Choose the location based on your needs:
- For testing: use current directory
- For personal use: use home directory (recommended)
- For system-wide settings: use ProgramData or /etc
Documentation
For detailed documentation, please visit our GitHub repository.
Support
If you encounter any issues or have questions:
License
This project is licensed under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp2mqtt-0.3.0.tar.gz.
File metadata
- Download URL: mcp2mqtt-0.3.0.tar.gz
- Upload date:
- Size: 5.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
401d8c91d39e0ebc90c56fb54a04a0bbd44e95ac2ec762e7245cb9bfda153acb
|
|
| MD5 |
7f6dd9445843d971fa4b5bbc38b1ebc7
|
|
| BLAKE2b-256 |
8ef191e9a80b680a922523246bfbeac5f8b969dc5e03edaa376a7010c62dd236
|
File details
Details for the file mcp2mqtt-0.3.0-py3-none-any.whl.
File metadata
- Download URL: mcp2mqtt-0.3.0-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7a1772e1598ae591ac797a347c81bbbf1cefa8cf801de450d80a0b989fe3ba3
|
|
| MD5 |
5eba60ab5548081c1e31a0bd83f89c2c
|
|
| BLAKE2b-256 |
b2758125a4f9422430bc8038b4fbb6d7645a4f8ad3f624fbc66bb08c964ddf8e
|