Skip to main content
Glama

Show the ARP table

get_arp_table
Read-onlyIdempotent

Read a FortiGate's ARP table to map IP addresses to MAC addresses, catching static-address devices that hold no DHCP lease.

Instructions

Show the ARP table, which is the IP-to-MAC bindings the appliance sees.

ARP catches devices DHCP does not, meaning anything with a static address, so it is the fallback when a device is present but holds no lease. MAC addresses are reported in one canonical form.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
vdomNoVirtual domain to read. Defaults to the one configured for this target. The `vdom` field in the response names the one actually read.
limitNoMaximum rows to return. Defaults to 200, capped at 1000.
offsetNoIndex to start from, for paging through a large table.
targetNoWhich FortiGate to query. Optional when only one is configured.
interfaceNoKeep only entries learned on this interface, matched exactly. A name that matches no interface empties the list, so check `filtered_out` before reading an empty result as an empty ARP table.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so the safety profile is covered. The description adds useful behavioral context by noting MAC addresses are reported in one canonical form, which is not in the structured fields. It does not mention pagination or rate limits, but the bar is lower due to 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 three sentences, front-loaded with the core purpose and immediately followed by the key usage distinction. Every sentence adds value: definition, comparison to DHCP, and a note on MAC address format.

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 read-only table listing tool with a rich output schema, full parameter coverage, and comprehensive annotations, the description covers purpose, usage context, and a behavioral detail (canonical MAC form). Nothing an agent needs to call it correctly 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%, and the schema already documents all five parameters thoroughly, including defaults, limits, and the interface filter caveat. The description adds no parameter-specific information beyond what the schema provides, so the baseline of 3 is 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?

States a specific verb (Show) and resource (ARP table), then immediately defines what the ARP table is (IP-to-MAC bindings). It is clearly distinguishable from siblings like list_dhcp_leases because the description explains ARP catches devices DHCP does not.

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

Usage Guidelines4/5

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

The description provides a clear usage context: 'ARP catches devices DHCP does not... so it is the fallback when a device is present but holds no lease.' This implicitly tells the agent when to prefer this tool over list_dhcp_leases, though it does not explicitly name that sibling or state exclusions.

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