shieldapi.check_ip
Check IP reputation: blacklists, Tor exit node detection, reverse DNS.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ip | Yes | IPv4 address to check (e.g. 8.8.8.8) |
Check IP reputation: blacklists, Tor exit node detection, reverse DNS.
| Name | Required | Description | Default |
|---|---|---|---|
| ip | Yes | IPv4 address to check (e.g. 8.8.8.8) |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate read-only, non-destructive, idempotent behavior. The description adds specific behavioral context by enumerating the checks performed (blacklists, Tor exit, reverse DNS), which is useful beyond the safety annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, front-loaded with action and resource, zero wasted words. Every part adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple single-parameter IP check, the description conveys the purpose and key checks. Since there is no output schema, it partially explains what the tool will provide (blacklist status, Tor detection, reverse DNS), but could be more explicit about the response format or scoring.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema fully describes the 'ip' parameter (IPv4 address, example provided), so the description does not need to add param details. Baseline of 3 is appropriate since the schema carries the meaning, and the description adds no extra parameter semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states the tool checks IP reputation and lists specific checks (blacklists, Tor exit node detection, reverse DNS). The verb 'Check' plus resource 'IP' distinguishes it from sibling tools like check_domain and check_url.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear context: use for checking IP reputation. It does not explicitly mention alternatives or exclusions, but the scope is unambiguous given the checked resource (IP) and sibling tool names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool has a clearly distinct purpose targeting specific security checks: domain, email, IP, password, password range, prompt injection, URL, full scan, and skill scanning. There is no overlap in functionality, making it easy for an agent to select the correct tool based on the input type and desired check.
All tools follow a consistent verb_noun pattern with the prefix 'shieldapi.check_' or 'shieldapi.scan_' (e.g., check_domain, check_email, scan_skill). The naming is uniform and predictable, using snake_case throughout without any deviations or mixed conventions.
With 9 tools, the server is well-scoped for a security API, covering a broad range of checks (e.g., reputation, breach detection, threat analysis) without being overwhelming. Each tool serves a unique and necessary function, making the count appropriate for the domain.
The tool set provides comprehensive coverage for security checks, including domain, email, IP, password, URL, and specialized scans for prompts and AI skills. A minor gap is the lack of update or delete operations, but this is reasonable for a read-only security assessment API, and agents can work around this by using the appropriate check tools as needed.