nexalware-mcp
Nexalware as an MCP server, over stdio, for Python. Point any MCP-aware host (Claude Desktop, Claude Code, Cursor, etc.) at it, and your device control tools show up automatically, the host's own model decides when to call them. It's a thin wrapper over the Python SDK's make_tools(), same operations, same permissions, just discoverable instead of hand-coded.
Already on Node? See @nexalware/mcp, same tool set. Building your own agent instead of using a pre-built host? Use the SDK directly, in Python or TypeScript. It's one function call away in code you already control, no subprocess or protocol discovery needed.
Get an API key
Create one on the dashboard (API Keys), scoped with a DeviceGrant to only the device(s) this agent should touch. This key ends up sitting in a local config file, least privilege matters more here than for a typical server-side integration.
Claude Code
claude mcp add nexalware -e NEXALWARE_API_KEY=nxw_live_sk_your_key_here -- uvx nexalware-mcp
Claude Desktop, or any host using a mcpServers config file
Add this block to the host's MCP config (Claude Desktop: Settings -> Developer -> Edit Config):
{
"mcpServers": {
"nexalware": {
"command": "uvx",
"args": ["nexalware-mcp"],
"env": {
"NEXALWARE_API_KEY": "nxw_live_sk_your_key_here"
}
}
}
}
Restart the host afterward, tools only load at startup. This uses uvx to run the package without a separate install step, every launch runs the latest published release. No uv? Install it once (curl -LsSf https://astral.sh/uv/install.sh | sh), or fall back to a regular install:
pip install nexalware-mcp
{
"mcpServers": {
"nexalware": {
"command": "nexalware-mcp",
"env": { "NEXALWARE_API_KEY": "nxw_live_sk_your_key_here" }
}
}
}
Environment variables
| Variable | Required | Meaning |
|---|---|---|
NEXALWARE_API_KEY |
yes | The key from the step above. The server exits immediately with an error if this is missing. |
NEXALWARE_API_URL |
no | Override for a self-hosted or staging deployment. Defaults to the production API. |
Tools
Every tool takes and returns the same shape as its equivalent Python SDK method, a failed call comes back as a normal MCP tool error with the same message the API itself returns, not a crash. The model reads each tool's parameter descriptions straight from its schema (generated from make_tools's own type hints and docstrings) at call time, the breakdown below is the same information, written out for a human deciding what to wire up or debugging what the agent just did.
list_devices
The devices this key can actually act on, only what its own DeviceGrant(s) cover, never the rest of the account. The natural first call, an agent that doesn't already know a device_id starts here instead of guessing one.
project_id(string, optional) — Narrow the list to one project. Leave it out to list every device this key can reach.
get_device_commands
The command catalog a device accepts, so the agent knows what cmd values are actually valid before calling send_command.
device_id(string, required) — From a priorlist_devicescall, shaped likedev_a1b2c3.
send_command
The general-purpose way to make a device do something.
device_id(string, required) — Which device to command.cmd(string, required) — Must match anamefromget_device_commands, case-sensitive.params(object, optional) — Only if that command's catalog entry declares aparamsSchema, shape depends entirely on the specific command.
turn_device_on / turn_device_off
Shorthand for the ON/OFF command.
device_id(string, required) — Which device to turn on/off.
get_device_telemetry
Historical telemetry readings, newest first.
device_id(string, required) — Which device's history to read.metric(string, optional) — Only this metric name, e.g.power_draw. Omit to get every metric.limit(number, optional) — Max rows, 1-1000, defaults to 100.since(number, optional) — Unix milliseconds, only readings at or after this time.
get_latest_telemetry
Current state plus the most recent reading per metric, in one call.
device_id(string, required) — Which device to snapshot.
list_sub_devices
Physical devices connected locally behind this one, if it's acting as a master. Empty until the master's own firmware reports one.
device_id(string, required) — The master device's id, not a sub-device id.
get_sub_device
One sub-device's current state and capabilities.
device_id(string, required) — The master device's id.sub_device_id(string, required) — From a priorlist_sub_devicescall, shaped likesub_x1y2z3.
get_sub_device_telemetry
Same idea as get_device_telemetry, scoped to one sub-device.
device_id(string, required) — The master device's id.sub_device_id(string, required) — Which sub-device's history to read.metric/limit/since(optional) — Same meaning as inget_device_telemetry.
send_sub_device_command
Send a command to one sub-device behind a master, instead of the master itself.
device_id(string, required) — The master device's id.sub_device_id(string, required) — Which sub-device to target.cmd(string, required) — Whatever command name the sub-device itself declared it accepts (its own vocabulary, not a Nexalware-defined catalog).params(object, optional) — Arguments for that command, if it needs any.
list_schedules
A device's active (PENDING or ACTIVE) schedules.
device_id(string, required) — Which device's schedules to list.
get_schedule_context
The commands available to schedule for a device, same catalog as get_device_commands.
device_id(string, required) — Which device to check.
create_schedule
Create or replace one of a device's 5 schedule slots, firing on_command at on_ts and off_command at off_ts. Calling this again with the same slot overwrites what was there.
device_id(string, required) — Which device to schedule.slot(number, required) — Which of the 5 fixed slots to use, an integer 0 to 4.on_ts(number, required) — Unix seconds to fireon_command.off_ts(number, required) — Unix seconds to fireoff_command.label(string, optional) — Shown on the dashboard, max 7 characters.enabled(boolean, optional) — Omit to default enabled;falsecreates it disabled.on_command(object, optional) —{ command, params? }. Defaults to{ "command": "ON" }if omitted.off_command(object, optional) — Same shape, defaults to{ "command": "OFF" }.
update_schedule
Update an existing schedule slot, only the fields provided are changed.
device_id(string, required) — Which device's schedule to update.slot(number, required) — Which slot (0-4), must already exist.on_ts/off_ts/label/enabled/on_command/off_command(all optional) — Same meaning as increate_schedule, include only what's changing.
delete_schedule
Cancel a schedule slot.
device_id(string, required) — Which device's schedule to cancel.slot(number, required) — Which slot (0-4) to cancel.
get_schedule_history
A device's completed or cancelled schedules, most recent first.
device_id(string, required) — Which device to check.
What it can't do
Nothing outside the calling key's own DeviceGrant. There's no tool to create a grant, register a device, or manage API keys, those stay dashboard-only, an MCP tool call is only ever as capable as the key you gave it, never able to expand its own access.
create_schedule/update_schedule fire existing commands from a device's catalog, they can't invent new ones. Defining, editing, or deleting a command definition itself stays a dashboard-only action.
Links
- Full docs
- SDK Reference (Python) / SDK Reference (TypeScript) - the same operations, called directly from your own code.
- Device Orchestration - what
list_sub_devices/send_sub_device_commandactually operate on.
License
MIT
Release files for nexalware-mcp 0.1.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| nexalware_mcp-0.1.1.tar.gz | 7.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| nexalware_mcp-0.1.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 15.0 kB
Release files / nexalware_mcp-0.1.1.tar.gz
| Download URL | nexalware_mcp-0.1.1.tar.gz |
|---|---|
| Size | 7.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
e17d7c122fe0c6ceef02b8bde41d47cd636bd723f3244d631b7f948a2e4de49d
|
|
BLAKE2b-256 checksum How to use checksums |
105aab40a76f9986a3b5089666aef8b94b64d1fdc75bd4aaad6d7b776b7f3773
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.6
|
Release files / nexalware_mcp-0.1.1-py3-none-any.whl
| Download URL | nexalware_mcp-0.1.1-py3-none-any.whl |
|---|---|
| Size | 7.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
3fc71c7e8875ed995fe6b35b1c55508cbac6ee917598e269e0573624ba42d812
|
|
BLAKE2b-256 checksum How to use checksums |
b4d908f5de7daf84c24e3f9f5e33139d97715d6870f659a919a65003a7a51b9a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.14.6
|