Skip to main content
Glama

domain-intelligence-mcp-server

ip_geolocation

Read-only

Look up geolocation for an IP address. Returns country, city, ISP. Args: ip: IP address (e.g. '8.8.8.8')

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ipYes

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and openWorldHint, so the read-only nature is covered. The description provides additional behavioral details by stating specific return fields (country, city, ISP), which is useful given the absence of an output schema. It does not disclose potential edge cases, but the annotation coverage lowers the burden.

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 extremely concise: one sentence for purpose and a structured Args section for the parameter. Every element serves a purpose with no redundant text, making it both efficient and easy to scan.

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?

For a simple read-only, single-parameter tool, the description covers the essential aspects: purpose, parameter format, and output fields. It lacks error/edge-case handling (e.g., invalid IPs), but given the tool's simplicity and the presence of annotations, this is not a major gap.

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 schema only specifies ip as a string with no format, and schema description coverage is 0%. The description compensates by labeling the parameter as an IP address and providing an explicit format example ('8.8.8.8'). This fully clarifies the parameter's meaning and expected input.

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 uses a specific verb 'look up' with a clear resource 'IP address' and explicitly lists the returned fields (country, city, ISP). It distinguishes itself from sibling tools like dns_lookup, ssl_check, and whois_lookup, all of which serve different purposes.

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 purpose clearly implies when to use the tool: when geolocation data for an IP address is needed. Although it doesn't explicitly name alternatives or exclusions, the context is clear enough and sibling tools are distinct in their functionality.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: DNS records, IP geolocation, SSL certificate, and WHOIS data. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (dns_lookup, ip_geolocation, ssl_check, whois_lookup). The naming is predictable and clear.

Tool Count5/5

With 4 tools, the server is well-scoped for a domain intelligence purpose. Each tool addresses a fundamental lookup type, and the count is appropriate without being excessive or thin.

Completeness4/5

The surface covers the essential domain/IP lookups: DNS, IP geolocation, SSL, and WHOIS. Minor gaps exist, such as reverse DNS or subdomain enumeration, but these are not critical for basic domain intelligence.

Resources