Skip to main content
Glama

get_local_ip

Retrieve the local IP address of this machine to determine its network presence, enabling diagnostics, configuration, and remote access setup.

Instructions

Get the local IP address of this machine

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.1.0

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden, but 'Get' clearly indicates a read-only operation with no side effects, and 'local IP address of this machine' describes the result. It does not discuss edge cases like multiple interfaces or IPv4/IPv6 selection, but for a zero-parameter read-only tool the core behavior is transparent enough.

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, front-loaded sentence with no filler. It states the action and the object directly, and every word earns its place.

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 zero-parameter, read-only utility with no output schema, the description provides enough information for correct selection and invocation: the agent knows the result will be the machine's local IP address. Potential ambiguities around IPv4/IPv6 or multiple interfaces are minor and do not affect invocation correctness.

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

Parameters4/5

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

The tool has zero parameters and the schema fully covers the input surface, so there is no parameter information the description needs to add. Per the baseline for zero-parameter tools, a score of 4 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?

The description states a specific verb ('Get') and a clearly defined resource ('the local IP address of this machine'). This makes the tool's function immediately understandable and distinguishes it from siblings like scan_network, ping_host, and get_network_connections, which address different networking tasks.

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?

The description implies the tool should be used when an agent needs the machine's local IP address, but it does not explicitly discuss when to prefer it over related tools such as get_network_connections or get_system_info. No exclusions or alternative conditions are provided, so the guidance is only implicit.

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