micrOSMCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HOST | No | Host address for the UI server. Default: 127.0.0.1 | |
| PORT | No | Port for the UI server. Default: 3333 | |
| MICROS_DEVICE_CACHE_PATH | No | Path to the device_conn_cache.json file. Default: data/device_conn_cache.json |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| discover_commandsA | Learn which modules and command signatures are available on live micrOS devices. Use this after discovering a device, after its firmware or modules change, or when |
| discover_devicesA | Find live micrOS devices on a local IPv4 |
| list_devicesA | Show a quick inventory of known micrOS devices, including each device's UID, name, address, note, and module names. Use this to see what devices are known without checking whether they are currently online. Use |
| run_commandA | Run a micrOS command or a sequential command pipeline on one live device. Before using this tool, call Command syntax examples:
For a string pipeline, Commands act on a real device and may change its state. Configuration reads such as |
| search_devicesA | Find the right micrOS device and command syntax before |
| set_device_noteA | Read or save helpful context about one micrOS device, such as its location, attached hardware, purpose, or how its readings should be interpreted. Target the device by UID, IP address, or an unambiguous name fragment. Omit |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a distinct role, but list_devices and discover_devices both show device inventories, and search_devices and discover_commands both surface command signatures. The descriptions clarify the differences (known vs. live scan, indexed vs. live query), so selection should be reliable.
All tool names use a consistent snake_case verb_noun pattern (list_devices, discover_commands, discover_devices, run_command, search_devices, set_device_note). The two discover_* tools are differentiated by their object, maintaining clarity.
Six tools is well-scoped for a device management server, covering discovery, inventory, command lookup, execution, and note-taking without unnecessary bloat. Each tool earns its place.
The tool surface covers the full lifecycle of interacting with micrOS devices: discovering devices on the network, listing known devices, searching for capabilities, learning command signatures, executing commands, and annotating device context. No obvious dead ends or missing core operations.