Back to Browse

Jettyd MCP Server

Developer ToolsLow Risk10.0MCP RegistryLocal
Free

Server data from the Official MCP Registry

Connect AI agents to IoT devices — read sensors, send commands, manage ESP32 fleets.

About

Connect AI agents to IoT devices — read sensors, send commands, manage ESP32 fleets.

Security Report

10.0
Low Risk10.0Low Risk

Valid MCP server (2 strong, 4 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.

3 files analyzed · 1 issue found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Your jettyd API key from api.jettyd.comRequired

Environment variable: JETTYD_API_KEY

jettyd API base URL (default: https://api.jettyd.com/v1)Optional

Environment variable: JETTYD_BASE_URL

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "com-jettyd-mcp": {
      "env": {
        "JETTYD_API_KEY": "your-jettyd-api-key-here",
        "JETTYD_BASE_URL": "your-jettyd-base-url-here"
      },
      "args": [
        "-y",
        "@jettyd/mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

@jettyd/mcp

MCP server for jettyd — gives AI agents direct access to IoT devices.

Connect Claude Desktop, Cursor, Continue, or any MCP-compatible client to your ESP32 devices.

Install

npx @jettyd/mcp

Or globally:

npm install -g @jettyd/mcp

Setup

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "jettyd": {
      "command": "npx",
      "args": ["@jettyd/mcp"],
      "env": {
        "JETTYD_API_KEY": "your-api-key-here"
      }
    }
  }
}

Cursor / Continue

Add to your MCP config:

{
  "jettyd": {
    "command": "npx @jettyd/mcp",
    "env": { "JETTYD_API_KEY": "your-api-key" }
  }
}

Tools

ToolDescription
list_devicesList all devices with status
read_deviceGet current sensor readings
send_commandSend command to device (relay, LED, etc.)
get_telemetryHistorical sensor readings
push_rulesPush JettyScript automation rules

Example conversations

"What's the temperature in the greenhouse?" → Calls read_device, reads shadow, returns current temperature

"Turn on the irrigation relay for 30 seconds" → Calls send_command with relay.on and {duration: 30000}

"Alert me if temperature goes above 30°C" → Calls push_rules with a threshold rule

"Show me the humidity trend for the last 24 hours" → Calls get_telemetry with metric=air.humidity, period=24h

Get your API key

Sign up at jettyd.com and get your API key from the dashboard.

Complete Setup Guide

New to jettyd? The OpenClaw Blueprint walks through the complete setup in 6 steps — hardware, platform, OpenClaw connection, sensors, automations, and dashboard.

Source

github.com/jettydiot/jettyd-mcp

MIT licence

Reviews

No reviews yet

Be the first to review this server!