get_scan
Get the results of a previous SEOLint scan by its ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| scanId | Yes | The scan ID (UUID) |
Get the results of a previous SEOLint scan by its ID.
| Name | Required | Description | Default |
|---|---|---|---|
| scanId | Yes | The scan ID (UUID) |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description only indicates this is a read operation. It does not disclose any behavioral traits (e.g., required permissions, scan status prerequisites, rate limits).
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 purpose. No wasted words.
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 retrieval tool with no output schema, the description is adequate but lacks details about return format or expected content of scan results.
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?
Schema coverage is 100% and the description adds little beyond 'by its ID'. Baseline of 3 is appropriate since the schema already documents the parameter.
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 retrieves scan results by ID, using verb 'Get' and resource 'results of a previous SEOLint scan'. It is distinguishable from siblings like 'scan_website' which initiates scans, but does not explicitly differentiate.
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?
No guidance on when to use this tool versus alternatives (e.g., after initiating a scan with scan_website). No prerequisites or context are provided.
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 unique purpose: triggering scans, retrieving results by ID, obtaining full site intelligence, or getting a single actionable issue. No overlap or ambiguity.
Three tools follow verb_noun pattern (get_scan, get_site_intelligence, scan_website), but 'next_issue' deviates slightly as it omits a verb. Still, the naming is clear and consistent in style.
With 4 tools, the server is well-scoped for an SEO analysis workflow. Each tool is essential, and the count avoids unnecessary complexity.
Covers the core workflow: scan, retrieve results, get intelligence, and get prioritized tasks. Minor gap: no way to list all scans or bulk view issues, but 'next_issue' fills the action-oriented need.