Skip to main content
Glama

List IP Addresses

hudu_list_ip_addresses
Read-onlyIdempotent

Find and list IP address records in Hudu, filtering by network, company, asset, address, FQDN, or status to locate specific entries.

Instructions

List ip addresses in Hudu. An ip_address record documents one address: its allocation status, its FQDN, the network it sits in and the asset it is configured on.

This endpoint documents neither page nor page_size, so there is no paging: the call returns everything matching your filters in a single response. If truncated comes back true the client cut records to stay inside its response budget, and because there is no next page the only ways to see the rest are narrower filters or a shorter fields list. That matters more here than anywhere else in this API: an unfiltered call against a large IPAM deployment returns every documented address in the instance, and a /16 that has been filled in can be tens of thousands of records. Always send a filter — network_id for one subnet, company_id for one customer, address or fqdn when you are chasing a single host.

address matches the stored text of one address, so it will not find every host in a subnet; use network_id for that. To go from an address to the machine, read asset_id and look it up with hudu_list_assets.

Returns an object with items plus pagination facts. Note that the Hudu API returns no total count for any collection, so page_was_full is the only honest signal that more records exist — read pagination_note before concluding a list is complete.

Operation class: Read.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fqdnNoMatch against the stored FQDN.
fieldsNoReturn only these top-level fields on each record. Use it to keep large lists small — e.g. ["id","name","company_id"]. Unknown field names are ignored.
statusNoReturn only addresses in this state. Hudu documents six: "unassigned", "assigned", "reserved", "deprecated", "dhcp", "slaac". The filter itself is typed as free text, so a value your instance uses but Hudu has not documented will still be passed through.
addressNoMatch one stored address exactly, e.g. "10.20.0.14". Not a range or prefix.
asset_idNoReturn the addresses recorded against one asset — every IP a device holds.
company_idNoReturn only addresses documented for this company.
created_atNoISO-8601 range as "start,end". Either side may be omitted — "2026-01-01T00:00:00Z," means everything since that moment, ",2026-01-01T00:00:00Z" everything before it. A bare timestamp with no comma matches that exact moment.
network_idNoReturn only addresses inside this network. The narrowest and safest filter; get the id from hudu_list_networks.
updated_atNoISO-8601 range as "start,end". Either side may be omitted — "2026-01-01T00:00:00Z," means everything since that moment, ",2026-01-01T00:00:00Z" everything before it. A bare timestamp with no comma matches that exact moment.
response_formatNoOutput shape. 'json' (default) is compact and machine-readable; 'markdown' is easier for a person to read but larger.json
Behavior5/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, but the description adds vital non-obvious behaviors: no paging (no page/page_size), `truncated` flag for response budget cuts, no total count in the API, and the need to check `page_was_full` and `pagination_note`. It also warns that unfiltered calls can return tens of thousands of records, which is beyond annotation scope.

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 long but the length is justified by the endpoint's risky default behavior. It is organized into clear paragraphs covering record definition, paging/truncation warnings, filter guidance, and return shape. The final 'Operation class: Read' is redundant with annotations and could be trimmed, but the rest is purposeful and front-loaded.

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

Completeness5/5

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

For a 10-parameter list endpoint with no output schema, the description covers all essential context: response shape (items + pagination facts), absence of total count, meaning of `page_was_full`, and `truncated` flag. It also warns about large deployments, points to related tools, and gives filter strategies. This is complete enough for safe and effective use.

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?

With 100% schema coverage, the baseline is 3, but the description adds significant practical value: it clarifies that `address` matches exact stored text and cannot find subnet hosts, recommends `network_id` as the narrowest/safest filter, provides a `fields` example to keep responses small, and links `asset_id` to hudu_list_assets. This transforms raw parameter definitions into actionable strategy.

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 'List ip addresses in Hudu' and explains what an ip_address record documents. It distinguishes itself from sibling tools like hudu_get_ip_address (single record) and hudu_list_assets (assets) by focusing on the address-centric list operation and explicitly mentioning the lack of paging.

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

Usage Guidelines5/5

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

The description gives explicit when-to-use guidance: 'Always send a filter — network_id for one subnet, company_id for one customer, address or fqdn when you are chasing a single host.' It also points to hudu_list_assets for going from an address to a machine and cautions against using `address` to find subnet hosts, recommending `network_id` instead.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ZenixSolutions/hudu-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server