MQTT MCP Server
Integration with Eclipse Mosquitto public broker for testing MQTT operations such as connect, publish, subscribe, and disconnect.
Integration with HiveMQ public broker for testing MQTT operations such as connect, publish, subscribe, and disconnect.
Provides MQTT client functionality, allowing connections to any MQTT broker, publishing and subscribing to topics, managing subscriptions, and checking connection status.
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., "@MQTT MCP ServerPublish 'hello' to topic 'test'"
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.
MQTT MCP Server
An MCP (Model Context Protocol) server that provides MQTT client functionality. This allows Claude to interact with MQTT brokers - publishing messages, subscribing to topics, and managing connections.
Available in both TypeScript (Node.js) and Python (FastMCP) versions!
Features
MCP Server: Connect to MQTT brokers through Claude
Web Application: Real-time background color changes via MQTT
Dual Implementation: TypeScript (local) + Python (cloud deployment)
Connect to MQTT brokers (supports mqtt:// and mqtts://)
Publish messages to topics with QoS and retain options
Subscribe to topics (including wildcard subscriptions)
Unsubscribe from topics
Check connection status
Disconnect from brokers
WebSocket real-time updates
Interactive web UI with color presets
FastMCP Cloud ready for one-click deployment
Related MCP server: OMNI-MQTT-MCP
Quick Start
TypeScript Version (Local)
npm install
npm run buildPython Version (FastMCP Cloud)
See FASTMCP_DEPLOYMENT.md for one-click cloud deployment!
Usage
As a Claude Desktop MCP Server
Option 1: TypeScript Version (Local - Easy Setup)
Run the automated setup script:
npm run setup # macOS/Linux
npm run setup:windows # WindowsOr manually add this to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"mqtt": {
"command": "node",
"args": ["/Users/sara/TestAlin/build/index.js"]
}
}
}After adding this configuration, restart Claude Desktop.
Option 2: Python Version (FastMCP Cloud - Recommended)
Deploy to FastMCP Cloud for cloud-hosted MQTT MCP server:
Visit https://fastmcp.cloud
Create a project from this GitHub repository
Set entrypoint to
mqtt_mcp_server.pyDeploy with one click!
See FASTMCP_DEPLOYMENT.md for detailed instructions.
Web Application with Color Changing Background
The web application subscribes to MQTT messages and changes its background color in real-time!
# Start the web server (defaults to port 3000)
npm run start:web
# Or specify custom settings
MQTT_BROKER=mqtt://broker.hivemq.com:1883 MQTT_TOPIC=color/change PORT=3000 npm run start:webThen open your browser to http://localhost:3000
How it works:
The web app connects to the MQTT broker and subscribes to the configured topic (default:
color/change)When any MQTT client publishes a color to that topic, the background changes instantly
You can test it from the web UI or ask Claude to publish colors via the MCP server
Environment Variables:
MQTT_BROKER: MQTT broker URL (default:mqtt://broker.hivemq.com:1883)MQTT_TOPIC: Topic to subscribe to (default:color/change)PORT: Web server port (default:3000)
MCP Server Standalone
npm startAvailable Tools
mqtt_connect
Connect to an MQTT broker.
Parameters:
broker_url(required): MQTT broker URL (e.g.,mqtt://localhost:1883ormqtts://broker.hivemq.com:8883)client_id(optional): Client ID for the connectionusername(optional): Username for authenticationpassword(optional): Password for authentication
Example:
Connect to mqtt://broker.hivemq.com:1883mqtt_publish
Publish a message to an MQTT topic.
Parameters:
topic(required): The MQTT topic to publish tomessage(required): The message payloadqos(optional): Quality of Service level (0, 1, or 2). Default: 0retain(optional): Whether to retain the message. Default: false
Example:
Publish "Hello World" to topic "test/example"mqtt_subscribe
Subscribe to an MQTT topic to receive messages.
Parameters:
topic(required): The MQTT topic (supports+for single-level and#for multi-level wildcards)qos(optional): Quality of Service level (0, 1, or 2). Default: 0
Example:
Subscribe to topic "sensors/#"Note: Received messages are logged to stderr and will appear in Claude's context.
mqtt_unsubscribe
Unsubscribe from an MQTT topic.
Parameters:
topic(required): The MQTT topic to unsubscribe from
mqtt_disconnect
Disconnect from the MQTT broker.
mqtt_status
Get the current connection status including active subscriptions.
Example Workflow
Using the Web App with Claude's MCP Server
Start the web application:
npm run start:webOpen your browser to
http://localhost:3000Ask Claude to publish colors (via MCP):
Connect to mqtt://broker.hivemq.com:1883 and publish "red" to topic "color/change"Watch the background change in real-time!
Try different colors:
Publish "#FF5733" to topic "color/change" Publish "blue" to topic "color/change" Publish "rgb(46, 204, 113)" to topic "color/change"
Using the MCP Server Only
Connect to a broker:
Connect to the public MQTT broker at mqtt://broker.hivemq.com:1883Subscribe to a topic:
Subscribe to topic "test/demo"Publish a message:
Publish "Hello from Claude!" to topic "test/demo"Check status:
What's the MQTT connection status?Disconnect:
Disconnect from the MQTT broker
Public Test Brokers
For testing, you can use these public MQTT brokers:
mqtt://broker.hivemq.com:1883(Eclipse Mosquitto)mqtt://broker.hivemq.com:1883(HiveMQ)mqtt://mqtt.eclipseprojects.io:1883(Eclipse IoT)
Note: Do not send sensitive data to public brokers.
Development
# Install dependencies
npm install
# Build
npm run build
# Watch mode
npm run watchLicense
MIT
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/sergiudanstan/mqtt-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server