Skip to main content
Glama
fitzypopper

osint-mcp-server

by fitzypopper

Osint Ip Recon

osint_ip_recon
Read-onlyIdempotent

Perform free IP reconnaissance with geo, RDAP, BGP, and Shodan InternetDB data in a single lookup.

Instructions

All-in-one free reconnaissance for an IP (geo, rdap, bgp, shodan internetdb).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ipYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, openWorldHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is fully covered. The description adds the concrete data sources and the fact that it's 'free', which is useful context beyond annotations. It doesn't disclose potential rate limits or delays from aggregating multiple services, but for a read-only tool with strong annotation coverage, this is a minor gap.

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?

One sentence, front-loaded with 'All-in-one free reconnaissance', and the parenthetical list of sources is compact and efficient. No filler or redundant phrasing—every word adds value.

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?

The tool aggregates four distinct data sources and the description names them, giving the agent a clear picture of its scope. An output schema exists, so return values don't need explanation. It doesn't mention potential failures (e.g., Shodan internetdb might have no data for a given IP), but for a read-only recon tool this is acceptable given the annotation coverage.

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 has only one required parameter 'ip' with zero description coverage (0%). The description does not specify expected format (e.g., IPv4/IPv6) or validation rules, relying on the tool name to imply an IP address. Since the parameter is self-explanatory from the tool name and there is only one, the gap is small, but the description still doesn't compensate for the schema's lack of detail.

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 clear verb ('reconnaissance') and resource ('an IP') and enumerates the specific data sources (geo, rdap, bgp, shodan internetdb), which immediately distinguishes it from sibling tools like geoip, whois_ip, bgp_ip, and shodan_internetdb. The 'all-in-one' framing makes its role obvious without needing to inspect other schemas.

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 use for comprehensive IP recon ('all-in-one'), but gives no explicit guidance on when to choose it over the individual sibling tools (e.g., geoip for geo-only, bgp_ip for BGP-only). It also doesn't mention any exclusions or when the combined tool might be overkill. The guidance is implied rather than explicit, which is adequate but not exceptional.

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