npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@iobroker/mcp-server

v1.1.3

Published

MCP server for ioBroker

Readme

@iobroker/mcp-server

MCP server for ioBroker

Description

This adapter exposes ioBroker as an MCP (Model Context Protocol) server, so MCP-capable clients (e.g. Claude Desktop) can read and control your installation through a well-defined set of tools.

Features

  • MCP server over the Streamable HTTP transport (/mcp endpoint)
  • Configurable HTTP/HTTPS web server
  • Configurable port and bind address
  • Optional authentication
  • Optional SSL/TLS support
  • Network diagnostics (ICMP ping / TCP probe) to troubleshoot adapter connections
  • Adapter repository search to recommend installable adapters

Operating modes

The adapter can run in two ways:

  1. Standalone (default) – it starts its own web server on the configured port. The MCP endpoint is http(s)://<host>:<port>/mcp.

  2. Web extension – it runs inside an existing web adapter instance and shares its web server (port, authentication, SSL). Select the target web instance in the admin configuration ("Extend WEB adapter"). The MCP endpoint is then served under the web adapter, e.g. http(s)://<host>:8082/mcp/.

    When a web instance is selected, the standalone server settings (port, bind address, authentication, SSL) are hidden because they are inherited from the chosen web instance.

Configuration

The adapter can be configured through the ioBroker admin interface using JSONConfig:

Server Configuration

  • Extend WEB adapter: Select a web instance to run as its extension. Leave empty to run standalone.
  • Port: The port on which the web server will listen (default: 8093) – standalone only
  • Bind Address: IP address to bind the server to (0.0.0.0 for all interfaces) – standalone only

Authentication

  • Enable Authentication: When enabled (standalone mode), every request to the /mcp endpoint must present valid ioBroker credentials, otherwise it is rejected with 401 Unauthorized. When disabled, the endpoint is reachable without credentials — only use that on a trusted network or behind a reverse proxy that provides its own authentication. As a web extension the host web instance's authentication applies instead, so this switch has no effect there.
  • Default User: The ioBroker user whose permissions every MCP request runs with (default: admin). All object/state reads and writes performed by the tools are executed in the name of this user, so the user's ACLs are enforced. A plain name like operator is automatically expanded to system.user.operator. When running as a web extension and no user is set here, the host web instance's default user is used.
  • Enable OAuth: Offer the browser-based OAuth2 login that MCP clients such as Claude Desktop use when a connector is added. In standalone mode this requires Enable Authentication. As a web extension it also works, but the login is then provided by the host web instance, so OAuth has to be enabled there as well (web ≥ 9.1.0, "Allow third-party clients"). See below.
  • Public URL: The externally reachable base URL of this server, e.g. https://iobroker.example.com. Required behind a reverse proxy — the URLs published in the OAuth discovery documents must be the ones the client can actually reach. When empty, they are derived from each incoming request.
  • Allow client self-registration: Let MCP clients register themselves via RFC 7591 (default: on). With this off, every client has to be registered by hand before it can connect.

Connecting an MCP client via OAuth (recommended)

With Enable OAuth on, a client only needs the MCP endpoint URL. It discovers the rest by itself, the user logs in and confirms in the browser, and the client never sees the ioBroker password:

  1. The client requests /mcp and gets 401 with a WWW-Authenticate header pointing at /.well-known/oauth-protected-resource/mcp (RFC 9728).
  2. From there it finds the authorization server and registers itself (RFC 7591).
  3. The user's browser opens the ioBroker login and consent page, and the client redeems the resulting authorization code with PKCE (RFC 7636).

Two requirements are easy to miss:

  • HTTPS is mandatory for anything but localhost. The flow runs through the user's browser, and MCP clients refuse plain http:// for remote hosts. Enable SSL below or put the server behind an https reverse proxy.
  • Set the Public URL when a reverse proxy is involved, otherwise the discovery documents advertise the internal address and the client cannot complete the flow.

Access tokens issued this way are bound to this server (RFC 8707): a token minted for some other service is rejected with error="invalid_token", even when it belongs to a valid ioBroker user. This matters most as a web extension, where other resources on the same web server are authorized by the same login.

As a web extension the division of labour is: the host web instance runs the login, consent and token endpoints, and this adapter publishes the metadata for its own endpoint under /.well-known/oauth-protected-resource/mcp and verifies the audience. Enable OAuth in both — with it off in web, unauthenticated MCP requests are answered with a redirect to the login page, which no MCP client can use.

Users can disconnect a client at any time; the client's tokens can be dropped via POST /oauth/revoke.

Authenticating a client without OAuth (headless clients)

Clients may also authenticate in either of two ways:

  • HTTP Basic auth — send an Authorization: Basic <base64(user:password)> header with every request (e.g. curl -u mcpserver:secret ...). Simplest for headless/script clients.

  • Bearer access token — obtain a token once and send it as Authorization: Bearer <access_token>:

    curl -X POST https://HOST:PORT/oauth/token \
      -H 'Content-Type: application/x-www-form-urlencoded' \
      -d 'grant_type=password&client_id=ioBroker&username=mcpserver&password=secret'
    # → { "access_token": "...", "token_type": "Bearer", "expires_in": 3600, "refresh_token": "..." }

Note that authentication only gates access to the endpoint; the tools still run with the Default User's permissions regardless of which user authenticated. Give the Default User an ioBroker account with exactly the ACLs the MCP client should have.

Permissions

  • Allow setting states: Allow MCP clients to write state values (the set_state and set_states tools). Default: on.
  • Mark setting states as destructive (setStateDestructive): Declare set_state and set_states with destructiveHint: true, so MCP clients can warn before a state is written. Default: on. When off, both tools are declared as non-destructive writes (readOnlyHint stays false); whether a client still asks for confirmation then depends on the client.
  • Allow object/file changes: Allow MCP clients to create/modify/delete objects and files (the set_object, delete_object, create_state, create_scene, write_file, delete_file, rename_file and mkdir tools). Default: off. When off, these tools are not exposed at all.

SSL/TLS Configuration

  • Enable HTTPS: Enable HTTPS/SSL for secure connections
  • Public Certificate: Path to the public certificate file
  • Private Key: Path to the private key file
  • Chained Certificate: Path to the chained certificate file (optional)

MCP Endpoint

The MCP server is served at POST/GET/DELETE /mcp using the Streamable HTTP transport with per-session state (tracked via the Mcp-Session-Id header). Sessions live in memory: requests with an unknown session ID (e.g. after a restart of the adapter) are answered with 404 Not Found, so the client starts a new session. Point your MCP client at:

  • standalone: http(s)://<host>:<port>/mcp
  • web extension: http(s)://<host>:<webPort>/mcp/

Available tools

| Tool | Description | |-----------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | get_states | Retrieve the current value of one or multiple states; IDs may contain wildcards (e.g. hue.0.*.brightness) | | get_object | Read a single object by its ID | | search_objects | Search objects/states by keyword (matched against ID and name); optional filters for object type, role, room and source adapter instance | | list_devices | List detected devices grouped by room (uses the ioBroker type-detector to expose functional devices with named controls); optional language and room filter | | list_instances | List adapter instances with their status | | list_adapters | List installed adapters with metadata (version, title, description, keywords) | | search_adapter_repository | Search the ioBroker adapter repository (all installable adapters, not just installed ones) by keyword; optional type category, onlyNotInstalled and language filters — use it to recommend which adapter to install for a device/service | | list_hosts | List ioBroker hosts with their status | | list_rooms | List rooms (enum.rooms.*) with localized names and member details; optional language and withIcons | | list_functions | List functions (enum.functions.*) with localized names and member details; optional language and withIcons | | history_query | Query historical values (requires a history adapter); aggregations: raw, min, max, avg, sum, count, minmax, percentile, quantile, integral | | read_file | Read a file from an adapter file storage (optional base64); large files are read in chunks via offset/length (default 512 KiB per call) — the result carries size, truncated and nextOffset | | list_files | List a directory in an adapter file storage | | file_exists | Check whether a file exists in an adapter file storage | | get_logs | Retrieve recent ioBroker log lines; optional filters by level (error/warn/info/debug), source adapter and start time (from_ts) | | write_log | Write a message to the ioBroker log | | system_info | Get system and js-controller information | | ping_host | Diagnose connectivity to a network device: ICMP ping to host plus an optional TCP connect to port — useful to investigate adapter ETIMEDOUT/connection errors | | set_state | Set the value of a state (value coerced to the state type) — requires Allow setting states | | set_states | Set multiple states in one call (for scenes/group actions like "all lights off") — requires Allow setting states | | set_object | Create/update an object (merges common/native) — requires Allow object/file changes | | delete_object | Delete an object, optionally with all children — requires Allow object/file changes | | create_state | Create a new state object with type/role/unit/min/max and optional initial value — requires Allow object/file changes | | create_scene | Create or update a scene for the ioBroker scenes adapter (state/value pairs applied together) — requires Allow object/file changes | | write_file | Write a file to an adapter file storage — requires Allow object/file changes | | delete_file | Delete a file from an adapter file storage — requires Allow object/file changes | | rename_file | Rename/move a file within the same adapter file storage — requires Allow object/file changes | | mkdir | Create a directory in an adapter file storage — requires Allow object/file changes |

All object/state access runs with the permissions of the configured Default User. The write tools are only registered when their respective permission option is enabled.

Every tool declares a JSON input schema and all four MCP behaviour hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint), so a host can tell what a tool does before calling it and can ask the user for confirmation before a writing tool runs. All reading tools are readOnlyHint: true; ping_host is the only tool with openWorldHint: true, because it talks to hosts outside of ioBroker.

Resources & live updates (SSE)

States and objects are also exposed as MCP resources using the canonical ioBroker URI scheme, so clients can read and subscribe to them. The server pushes changes over the Streamable HTTP SSE stream (notifications/resources/updated).

  • States: iobstate://<id> (e.g. iobstate://javascript.0.temperature) – resources/read returns { id, val, ack, ts, lc, q }.
  • Objects: iobobject://<id> (e.g. iobobject://system.adapter.admin.0) – resources/read returns the object.
  • Logs: ioblog://all (every source) or ioblog://<source> (e.g. ioblog://admin.0) – resources/read returns the recent log lines ({ source, logs: [{ ts, level, source, message }] }). Subscribing enables log forwarding for the adapter; each new matching line triggers a notifications/resources/updated.
  • resources/subscribe subscribes to the underlying ioBroker state/object/log; on every change the client receives a notifications/resources/updated for that URI and re-reads it. resources/unsubscribe stops it.

Subscriptions are tracked per session and ref-counted, so the adapter subscribes to a state/object only once regardless of how many clients/sessions watch it, and unsubscribes when the last one leaves.

(Files use iobfile://<adapter>/<path> in the same scheme; they are available via the read_file/write_file tools rather than as subscribable resources.)

Health endpoints (non-MCP)

  • GET / - Basic server information
  • GET /status - Server status, uptime and active session count
  • GET /api/info - Adapter information

Development

npm run build   # compile src/ to build/
npm run lint
npm test        # builds, then runs the unit tests in test/

The unit tests drive the server through a real MCP client over an in-memory transport (createInProcessMcp) on top of a mock ioBroker adapter, so every declared tool is called the way an MCP client calls it and its result is verified:

  • test/toolMetadata.test.js guards the advertised contract - the exact set of tools, a title, a description, an input schema and the four behaviour hints on every one of them, and the permission gating.
  • test/tools.test.js exercises the behaviour of each tool (including the error paths and the input validation) against test/mockAdapter.js.

Changelog

1.1.3 (2026-09-15)

  • (@GermanBluefox) Requests with an unknown Mcp-Session-Id (e.g. after a restart) are answered with 404 Not Found instead of 400, so MCP clients start a new session as required by the Streamable HTTP specification

1.1.2 (2026-09-15)

  • (@GermanBluefox) New option setStateDestructive (default true): set_state/set_states can be declared as non-destructive writes

1.1.1 (2026-09-15)

  • (@GermanBluefox) No "MCP authentication is disabled" warning when the standalone server is bound to a loopback address (127.0.0.1, ::1, localhost)

1.1.0 (2026-09-11)

  • (@GermanBluefox) Every tool now declares all four MCP behaviour hints (readOnlyHint, destructiveHint, idempotentHint, openWorldHint) and a human-readable title, so hosts can warn before a writing tool is invoked
  • (@GermanBluefox) system_info, list_instances and list_hosts declare an explicit (empty) input schema
  • (@GermanBluefox) The embedded in-process client now exposes the title and annotations of every tool
  • (@GermanBluefox) Fixed the JSDoc of the embedded allowSetState option: state writing is opt-out (default true), not opt-in
  • (@GermanBluefox) Added unit tests that call every declared tool over a real MCP client/server pair

1.0.3 (2026-09-03)

  • (@GermanBluefox) read_file reads large files in chunks: new optional offset/length parameters, at most 512 KiB per call by default; the result now contains size, offset, length, truncated and nextOffset (MCP clients reject tool results above 1 MB, ioBroker/ioBroker.mcp#63)

1.0.2 (2026-09-03)

  • (@GermanBluefox) Updated packages

1.0.1 (2026-08-04)

  • (@GermanBluefox) Added OAuth support: MCP clients can now connect through a browser login instead of a manually created token
  • (@GermanBluefox) OAuth also works as a web extension, using the host web instance as the authorization server
  • (@GermanBluefox) Access tokens are checked against the resource they were issued for (RFC 8707)
  • (@GermanBluefox) Requires @iobroker/webserver 2.0.1

0.1.6 (2026-07-10)

  • (@GermanBluefox) Added fillLevel

0.1.5 (2026-07-04)

  • (@GermanBluefox) Better rooms and name resolution

0.1.2 (2026-07-02)

  • (@GermanBluefox) Fixed authentication: with "Enable Authentication" on, the standalone MCP endpoint now requires valid ioBroker credentials (Bearer token or HTTP Basic auth) and rejects anonymous requests with 401 Unauthorized (#44)

0.0.2 (2026-06-17)

  • (@GermanBluefox) Initial development

License

MIT License

Copyright (c) 2026 ioBroker

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.