Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
MQTT IoT MCP Server
radio

MQTT IoT MCP Server MCP Server

IoT messaging protocol

mqttiotmessagingpubsub

About

## MQTT IoT MCP Server: Lightweight Messaging Protocol The **MQTT IoT MCP Server** integrates MQTT messaging protocol into Google Antigravity, enabling AI-assisted IoT communication, topic management, and message handling for connected devices. ### Why MQTT MCP? - **Lightweight**: Minimal bandwidth for constrained IoT devices - **Pub/Sub Pattern**: Flexible publish-subscribe messaging model - **QoS Levels**: Guaranteed message delivery options - **Retained Messages**: Store last known values for subscribers - **Wildcard Topics**: Subscribe to multiple topics with wildcards ### Key Features #### 1. Publishing ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Publish command message to device topic with QoS 1" }] ) ``` #### 2. Subscribing ```python # Subscribe to topics response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Subscribe to all sensor topics and display incoming messages" }] ) ``` #### 3. Topic Management ```python # Manage topics response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "List all active topics and their retained messages" }] ) ``` #### 4. Broker Status ```python # Check broker response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Show MQTT broker statistics including connected clients" }] ) ``` ### Configuration ```json { "mcpServers": { "mqtt": { "command": "npx", "args": ["-y", "@anthropic/mcp-server-mqtt"], "env": { "MQTT_BROKER_URL": "mqtt://localhost:1883", "MQTT_USERNAME": "user", "MQTT_PASSWORD": "password" } } } } ``` ### Use Cases **IoT Messaging**: Enable communication between IoT devices. **Telemetry**: Collect sensor data from distributed devices. **Commands**: Send commands to remote devices. **Real-Time Updates**: Push real-time updates to subscribers. The MQTT MCP Server brings IoT messaging into your workflow.

Installation

Configuration
{
  "mcpServers": {
    "mqtt": {
      "mcpServers": {
        "mqtt": {
          "env": {
            "MQTT_BROKER_URL": "mqtt://localhost:1883"
          },
          "args": [
            "-y",
            "mqtt-mcp"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Publish/subscribe messaging
  2. 2IoT device control
  3. 3Standard MQTT protocol

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers