Skip to main content
Glama

get_lemon_target_ip

Retrieves the current network URL/IP that LemonMCP uses to communicate with an iOS device. Use it to troubleshoot connectivity or configure integrations.

Instructions

Retrieves the current network URL/IP that the MCP is using to communicate with the iOS device.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It states a read but doesn't disclose whether the value is cached, whether it can be null/unset, whether it requires a device connection, or any failure modes. Minimal behavioral context.

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?

A single, front-loaded sentence with no waste. Appropriate sizing for a zero-parameter getter.

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

Completeness3/5

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

For a simple no-param read with no output schema, an agent still lacks whether the return is a URL vs IP, format, and behavior when unset. Adequate but leaves gaps that could be closed in one sentence.

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?

Zero parameters, so per the rubric the baseline is 4. The description correctly implies no inputs are needed, and there is nothing to mis-document.

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?

States a specific verb (Retrieves) and a specific resource (the current network URL/IP used for iOS device communication). This is clear and distinguishable, though the sibling set_lemon_target_ip is a natural counterpart that the description doesn't explicitly differentiate from.

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?

Implies usage as a read of the current target IP, but gives no explicit when-to-use guidance, no mention of the paired set_lemon_target_ip, and no context about when this value would be needed (e.g., debugging connectivity). Minimum viable.

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