Skip to main content
Glama
Spiceman161

Keenetic NOC MCP

by Spiceman161

List network interfaces

list_interfaces
Read-only

List all router interfaces (WAN, LAN, WiFi, VPN, bridges) with link state, IP address, and default route. Filter by type, limit rows, and select summary or full detail.

Instructions

Every interface on the router - WAN links, bridges, Wi-Fi access points and VPN tunnels - with link state, address and whether it carries the default route. Summary detail is the default because the full listing is very large.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNoWhich interfaces to include. Defaults to all.
limitNoMaximum rows. Defaults to 100.
detailNosummary returns seven fields per interface; full returns every field.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.0.0-dev

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the description doesn't need to restate safety. It adds value by warning that the full listing is very large and that summary detail is the default, which helps the agent anticipate response size. It also mentions the fields returned. No contradiction with annotations.

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

Conciseness5/5

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

The description is a single, efficiently structured sentence. It front-loads the purpose and scope, then adds a key behavioral hint about default detail. No filler or redundancy; every piece of information is necessary.

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?

Without an output schema, the description partially compensates by naming the fields returned (link state, address, default route) and the default detail level. It does not mention pagination or handling of large results beyond the default, but the schema already defines a limit parameter. Given the simplicity of the tool, this is adequate but could hint at using limit for large listings.

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 coverage is 100%, so each parameter is already documented with descriptions and enums. The description does not introduce additional parameter semantics beyond what the schema provides, so the baseline of 3 applies. It mentions fields returned but not parameter-specific details.

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

Purpose4/5

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

The description clearly states the tool lists every interface on the router, enumerating types (WAN, bridges, Wi-Fi, VPN) and the included attributes (link state, address, default route). This distinguishes it from siblings like get_interface or list_devices, though it doesn't explicitly name an alternative. The verb 'list' and resource 'interfaces' are specific.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives such as get_interface for a single interface or list_vpn for VPN-specific listings. It only notes the default detail level, which is more about output behavior than usage context. No exclusions or alternative routing is given.

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