Port Scanner API
Server Details
Scan the open TCP ports of your own public IP. Fast (32) or deep (65535). No key, no signup.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 2 tools
The two tools are clearly differentiated by scan depth (all ports vs. 32 common ports) and descriptions explicitly note the difference. However, they share virtually identical mechanics and phrasing, so an agent could briefly confuse them. Still, a careful reader can tell them apart unambiguously.
Both tools follow a consistent double_verb pattern: 'deep_scan' and 'fast_scan'. The naming clearly communicates the differentiator (depth vs. speed) and the shared 'scan' suffix makes the set cohesive.
With only two tools, the server feels minimally scoped. The pair covers fast and deep scanning, which is reasonable for a simple port scanner, but the count is on the borderline of feeling thin.
The tool set covers the core domain of scanning your own public IP with both a quick and a thorough option. It lacks features like custom port ranges or UDP scanning, but for the stated policy-restricted purpose, it is functionally complete.
Available Tools
2 toolsdeep_scanDeep port scan (all ports)AInspect
Scan all 65535 TCP ports (~1-5 min) of YOUR OWN public IP address - the egress IP of the machine running this MCP client. There is no target argument: by policy portscan only scans the requester's own IP. The call is non-blocking and keyed by your IP: it starts a scan if none is running, otherwise returns the current state. Call deep_scan repeatedly to poll until status is "complete" (or "incomplete"/"failed"); open ports and service banners are in the result. Pass rescan:true to force a fresh scan when a previous result already exists.
| Name | Required | Description | Default |
|---|---|---|---|
| rescan | No | Force a new scan even if a recent result exists for your IP. Default false: reuse the in-flight or last result. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ip | Yes | |
| status | Yes | |
| message | Yes | |
| partial | No | |
| percent | No | |
| scan_type | Yes | |
| ports_open | No | |
| ptr_record | No | |
| duration_ms | No | |
| fail_reason | No | |
| total_chunks | No | |
| ports_filtered | No | |
| chunks_complete | No | |
| service_banners | No | |
| poll_after_seconds | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses non-blocking behavior, keying by IP, poll-until-complete statuses ('complete'/'incomplete'/'failed'), result contents (open ports and banners), and rescan semantics. Annotations (readOnlyHint=false, openWorldHint=true) are consistent with this side-effecting, externally-reachable action.
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?
Four sentences, each providing necessary detail—scope, policy, polling, and rescan—with the core action first. No filler or repetition.
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?
The output schema handles return structure, while the description covers timing (1-5 min), non-blocking polling, status values, and result contents, making it fully actionable for an agent.
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 sole parameter rescan is already documented in the schema with full coverage; the description restates it without adding significant new semantics. Baseline 3 applies because schema covers the parameter adequately.
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?
The description clearly states 'Scan all 65535 TCP ports' of the user's own public IP, with explicit policy restriction against targeting others. This specific verb+resource+scope distinguishes it from sibling fast_scan.
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 explains the polling pattern and rescan flag, and notes the policy restriction that only the requester's own IP can be scanned. However, it does not explicitly contrast with fast_scan or state when to prefer one over the other.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
fast_scanFast port scan (common ports)AInspect
Scan the 32 most common TCP ports (~20s) of YOUR OWN public IP address - the egress IP of the machine running this MCP client. There is no target argument: by policy portscan only scans the requester's own IP. The call is non-blocking and keyed by your IP: it starts a scan if none is running, otherwise returns the current state. Call fast_scan repeatedly to poll until status is "complete" (or "incomplete"/"failed"); open ports and service banners are in the result. Pass rescan:true to force a fresh scan when a previous result already exists.
| Name | Required | Description | Default |
|---|---|---|---|
| rescan | No | Force a new scan even if a recent result exists for your IP. Default false: reuse the in-flight or last result. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ip | Yes | |
| status | Yes | |
| message | Yes | |
| partial | No | |
| percent | No | |
| scan_type | Yes | |
| ports_open | No | |
| ptr_record | No | |
| duration_ms | No | |
| fail_reason | No | |
| total_chunks | No | |
| ports_filtered | No | |
| chunks_complete | No | |
| service_banners | No | |
| poll_after_seconds | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description richly discloses behavioral traits beyond the annotations: it is non-blocking, keyed by IP, returns current state if a scan is already running, must be polled until a terminal status, and rescan forces a fresh scan. This adds significant context beyond the readOnlyHint=false and openWorldHint=true 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?
The description is a single dense paragraph but every sentence contributes essential operational detail (scope, policy, non-blocking behavior, polling, result contents, rescan). It is slightly verbose but appropriately sized for the complexity; there is no fluff.
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?
Given the tool's asynchronous nature, polling requirement, and output schema presence, the description provides complete guidance: it explains status values, result contents, and how to force a new scan. Combined with the schema and annotations, the agent has everything needed to invoke and interpret the tool.
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 covers 100% of the single parameter (rescan) with a description. The tool description adds further practical meaning by explaining the effect of rescan:true (force a fresh scan) and the default behavior, which goes beyond the schema's basic description.
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?
The description clearly states the tool scans the 32 most common TCP ports of the requester's own public IP, with a specific verb ('scan'), resource ('your own IP'), and scope ('common ports'). It also distinguishes from the sibling deep_scan by explicitly limiting to common ports and noting there is no target argument.
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 usage context: it explains the policy constraint (only scans the requester's own IP), the non-blocking/polling behavior, and when to use rescan:true. However, it does not explicitly mention the alternative deep_scan or state when to prefer one over the other, so it lacks explicit alternative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
- First observed
deep_scan - First observed
fast_scan
Related MCP Connectors
Free no-key IP intelligence: geolocation, VPN detection, DNS, WHOIS, blacklists, breach checks
Free, read-only security scanner for remote MCP servers, before you connect them.
Free anonymous website, DNS, email and TLS checks, plus monitor read and opt-in write access.
IP geolocation, ASN and network data, plus VPN, proxy and Tor detection. ASN tools need no key.
Related MCP Servers
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to scan TCP ports on any host and report open/closed status and response times via a pay-per-call x402 micropayment API.MIT
- AlicenseAqualityBmaintenanceEnables coding agents to perform network diagnostics and lookups, including subnet calculations, port and MAC vendor information, DNS and blocklist checks, TLS certificate inspection, and public IP discovery, all without needing an account or sending telemetry.11MIT
- AlicenseNot gradedqualityDmaintenanceEnables scanning IP addresses for vulnerabilities using Nmap and API-based checks, supporting both single and batch scans with detailed reports.11 npm5MIT
- AlicenseNot gradedqualityAmaintenanceFree SSL/TLS scanning and Let's Encrypt certificate issuance (private key stays local), plus certificate-expiry monitoring via one MCP server. Public scan and cert tools need no account.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.