Skip to main content
Glama

openwisp_get_device

Get device details by ID, including MAC address, model, status, and IP address. Use this to access information for a specific OpenWISP device.

Instructions

[Category: Devices & Controller] Get details, MAC address, model, status, and IP address for a specific device. (HTTP GET /api/v1/controller/device/{id}/)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesDevice UUID or ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.0

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden, but the GET method and the raw endpoint path (/api/v1/controller/device/{id}/) do disclose that this is a read-only single-resource fetch. It omits any mention of auth/permission requirements, not-found behavior, or whether the response is paginated, which leaves behavioral gaps for a tool with zero annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One tight, front-loaded sentence preceded by a category tag and the underlying HTTP route; no filler. The parenthetical endpoint is slightly redundant with the field list but remains useful reference detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description compensates by naming the primary fields returned (MAC, model, status, IP). For a simple single-id read tool, that is close to sufficient; only auth/error context is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the single id parameter is already documented ('Device UUID or ID'). The description adds no format, uniqueness, or lookup semantics beyond what the schema states, making the baseline 3 appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description gives a specific verb ('Get') plus resource ('device') and enumerates the returned fields (MAC address, model, status, IP address). The qualifier 'a specific device' cleanly separates it from list_devices, while the id-scoped resource distinguishes it from create/update_device.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Usage is only implied: 'a specific device' signals you need an existing device id, contrasting implicitly with the list endpoint. There is no explicit when-to-use/when-not guidance or named alternative tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools