Skip to main content
Glama
InfraMCP

phpipam-mcp-server

by InfraMCP

list_nameservers

Retrieve DNS nameserver records from phpIPAM, with an optional limit to control the number of results returned.

Instructions

List DNS nameservers from phpIPAM.

CONTEXT OPTIMIZATION: Limited to 20 results by default.

Args: limit: Maximum number of nameservers to return (default: 20, max: 1000)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A3.8/5.0
Behavior3/5

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

There are no annotations, so the description carries the full behavioral burden. It discloses the default result cap ('Limited to 20 results by default') and the max value of 1000, but it does not mention authentication needs, rate limits, or any other behavioral constraints. For a simple read-only list tool this is adequate but not rich.

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?

The description is short and front-loads the core purpose. The 'CONTEXT OPTIMIZATION' line adds useful limit information, though it is slightly redundant with the following Args block, and the label itself is not 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?

Given the low complexity (one optional parameter) and the presence of an output schema, the description is mostly complete. The main gap is the absence of usage guidance and any mention of access requirements, but for a straightforward listing tool this is acceptable.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must compensate for the undocumented parameter. It fully explains 'limit' as the maximum number of nameservers to return, including its default and maximum value, which goes beyond the bare schema definition.

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 clearly states a specific action ('List') and resource ('DNS nameservers') with a source ('phpIPAM'). None of the sibling tools target nameservers, so this description unambiguously distinguishes the tool.

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?

No guidance is given about when to use this tool versus alternatives, prerequisites, or situations where another tool would be more appropriate. The description only restates the purpose and the limit parameter, leaving usage routing entirely to the agent.

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