trackmcp
Back to directory
veonua

smartthings-mcp

View on GitHub

SmartThings

5 stars PythonOthers Updated Mar 11, 2026

Documentation

smartthings-mcp

This project provides a small Model Context Protocol server exposing a few SmartThings helper tools.

json
"mcpServers": {
  "SmartThings": {
    "type": "stdio",
    "command": "uv",
    "args": [
        "run",
        "src/server.py"
    ],
    "env": {
        "TOKEN": "Your Personal Token"
    }
  }
}

Docker

A `Dockerfile` is included for convenience. Build and run the image with:

bash
docker build -t smartthings-mcp .
docker run -e TOKEN= smartthings-mcp

The container installs the production dependencies using `uv` and launches the server with `uv run src/server.py`.

Available tools

The server exposes the following MCP tools:

  • `get_rooms` – return a mapping of room UUIDs to names.
  • `get_devices` – list devices with optional filtering.
  • `get_device_status` – fetch status for a device by UUID.
  • `execute_commands` – send commands to a device.

Frequently asked questions

What is smartthings-mcp?

smartthings-mcp is SmartThings

How do I install smartthings-mcp?

Open the GitHub repository and follow its README. Most MCP servers are added to your client's MCP config, then called by your agent.

Is smartthings-mcp open source?

Yes — it is hosted on GitHub at https://github.com/veonua/smartthings-mcp and has 5 stars.

Related MCP tools

Run your own MCP server? See who uses it and what to fix.

Measure it with TrackMCP