openclaw-mcp-api

[WIP] Guide to connect to Cloud Studio IoT's OpenClaw platform via MCP API. Use when configuring MCP server connections, sending commands to IoT devices, reading sensor data, or managing channels through the OpenClaw gateway.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "openclaw-mcp-api" with this command: npx skills add Sobdev/iot-platform

OpenClaw MCP API Connection Guide

🚧 WIP -- This skill is under active development. Details may change as the OpenClaw API stabilizes.

Overview

OpenClaw exposes an MCP (Model Context Protocol) server through its gateway, allowing Claude Code and other MCP clients to interact with IoT devices, read sensor data, and manage channels programmatically.

Prerequisites

  • OpenClaw installed and running (openclaw --version)
  • Gateway daemon active (systemctl --user status openclaw-gateway)
  • Gateway healthy (curl -fsS http://127.0.0.1:18789/healthz)
  • Tailscale configured (for remote access)

Quick Start

1. Verify the Gateway Is Running

curl -fsS http://127.0.0.1:18789/healthz
# Expected: OK

2. Configure MCP Client Connection

Add the OpenClaw MCP server to your Claude Code settings (~/.claude/settings.json or project .claude/settings.json):

{
  "mcpServers": {
    "openclaw": {
      "type": "sse",
      "url": "http://127.0.0.1:18789/mcp"
    }
  }
}

For remote access via Tailscale:

{
  "mcpServers": {
    "openclaw": {
      "type": "sse",
      "url": "http://openclaw-desktop:18789/mcp"
    }
  }
}

3. Verify Connection

Once configured, restart Claude Code and check that the OpenClaw tools appear in the available MCP tools list.

Gateway Modes

Loopback (default)

Gateway binds to 127.0.0.1 only. Accessible from the local machine.

gateway:
  bind: loopback
  port: 18789

Tailscale Serve (tailnet only)

Accessible from any device on your Tailscale network.

gateway:
  bind: loopback
  port: 18789
  tailscale:
    mode: serve

Tailscale Funnel (public with auth)

Publicly accessible with password authentication.

gateway:
  bind: loopback
  port: 18789
  tailscale:
    mode: funnel
  auth:
    mode: password
    password: "your-secure-password"

Available MCP Capabilities (WIP)

These are the expected MCP tools and resources exposed by the gateway:

Tools

ToolDescription
openclaw_device_listList connected IoT devices
openclaw_device_commandSend a command to a specific device
openclaw_sensor_readRead current sensor data
openclaw_channel_listList configured channels (Telegram, etc.)
openclaw_channel_sendSend a message through a channel
openclaw_agent_runRun an agent task on the gateway

Resources

URI PatternDescription
openclaw://devicesList of all registered devices
openclaw://devices/{id}/sensorsSensor readings for a device
openclaw://channelsConfigured communication channels
openclaw://configCurrent gateway configuration

Troubleshooting

Gateway not responding

systemctl --user restart openclaw-gateway
journalctl --user -u openclaw-gateway -f

MCP connection refused

  1. Verify the gateway is healthy: curl http://127.0.0.1:18789/healthz
  2. Check the port is not blocked: ss -tlnp | grep 18789
  3. For remote access, confirm Tailscale is connected: tailscale status

Authentication errors (funnel mode)

Ensure the password in your MCP config matches the one in ~/.openclaw/gateway.yaml.

Useful Commands

# Gateway management
openclaw doctor              # Run diagnostics
openclaw config list         # Show current config
openclaw channels list       # List channels

# Device interaction (CLI)
openclaw devices list        # List devices
openclaw devices status      # Device health overview

# Logs
journalctl --user -u openclaw-gateway -f

References


OpenClaw — IoT Platform & AI Gateway https://cloudstudioiot.com/

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

clawhub-install

Download and install skills from ClawHub directly via curl, bypassing official CLI rate limits. Use when the user wants to install one or more ClawHub skills...

Registry SourceRecently Updated
0199
upupc
Coding

Homebrew Bridge

Expose Mac Homebrew tools like brew, gh, and other /opt/homebrew/bin CLIs on a Linux OpenClaw gateway by installing explicit same-LAN SSH wrappers with optio...

Registry SourceRecently Updated
Coding

Dev Tools Pack

Collection of developer tools including Chrome extension templates, AI code reviews, GitHub README generators, SaaS landing pages, tech blogs, and tweet thre...

Registry SourceRecently Updated