loading…
Search for a command to run...
loading…
Bridges Web of Things (WoT) devices to AI assistants via MCP, enabling discovery, monitoring, and control of IoT devices through natural language.
Bridges Web of Things (WoT) devices to AI assistants via MCP, enabling discovery, monitoring, and control of IoT devices through natural language.
WoT-MCP is a server application that exposes Web of Things (WoT) devices to AI assistants via the Model Context Protocol (MCP).
As AI agents become more sophisticated, their ability to interact with the real world remains limited by fragmented IoT protocols. WoT-MCP solves this by translating the standardized Web of Things model (Properties, Actions, Events) into MCP primitives (Resources and Tools).
This allows any MCP-compliant AI client (like Claude Desktop or LangChain agents) to natively discover, monitor, and control physical devices without needing custom code for each device.
explicit: Generates individual tools for every property and action (e.g., set_temperature, get_humidity). Best for small numbers of devices.generic: Provides a fixed set of tools (list_devices, read_property, write_property, invoke_action) to manage any number of devices. Best for scalability.stdio and streamable-http.git clone https://github.com/macc-n/wot-mcp.git
cd wot-mcp
npm install
npm run build
To use WoT-MCP with local clients like Claude Desktop, you can configure them to spawn the server directly.
Claude Desktop Configuration:
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"wot": {
"command": "npm",
"args": [
"--prefix",
"<absolute-path>/wot-mcp",
"start",
"--",
"--tool-strategy",
"explicit",
"--config",
"<absolute-path>/things-config.json"
]
}
}
}
Note: Ensure you use absolute paths for both the script and the configuration file.
To expose the MCP server over HTTP:
npm start -- --mode streamable-http --port 3000 --config things-config.json
Claude Desktop Configuration:
Add the following to your claude_desktop_config.json:
{
"mcpServers": {
"wot": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"http://<remote-ip>:<port>/mcp",
"--allow-http"
]
}
}
}
Explicit Strategy (Default) Creates a unique tool for every capability:
npm start -- --tool-strategy explicit --config things-config.json
Generic Strategy Uses 4 static tools to manage all devices:
list_devices: Return a JSON list of all devices and their capabilties.read_property: Takes devide_id and property_name.write_property: Takes devide_id, property_name, and value.invoke_action: Takes devide_id, action_name, and optional params.Note: WoT Events are managed as described before.
npm start -- --tool-strategy generic --config things-config.json
You must load things from a JSON configuration file. The file supports HTTP, CoAP, and MQTT devices.
// things-config.json
{
"things": [
{
"protocol": "http",
"url": "http://localhost:8080/httpthermostat"
},
{
"protocol": "coap",
"url": "coap://localhost:5683/coaplight"
},
{
"protocol": "mqtt",
"url": "mqtt://test.mosquitto.org/MqttSensor",
"td": "/path/to/mqtt-td.json"
}
]
}
Note: For mqtt devices, the td field is required and must point to a local file containing the Thing Description, as TD discovery is not supported over MQTT.
The wot-mcp-cli repository contains an interactive Command Line Interface (CLI) client for the WoT-MCP server, allowing you to inspect tools and interact with devices.
The wot-mcp-examples repository contains sample code for devices, configuration files, and clients.
For comprehensive documentation and further details, please consult the respective repositories.
Build the image:
docker build -t wot-mcp .
Run with a configuration file:
docker run --rm --network="host" \
-v $(pwd)/things-config.json:/app/things-config.json \
wot-mcp \
--tool-strategy explicit \
--config /app/things-config.json \
--mode streamable-http \
--port 3000
Note: Replace the path of the config file.
This first release focuses on the core functionality of bridging Web of Things devices to MCP. It does not yet include advanced features such as authentication, security mechanisms, or a persistent storage layer.
Выполни в терминале:
claude mcp add wot-mcp -- npx Безопасность
Низкий рискАвтоматическая эвристика по публичным данным — не гарантия безопасности.