Skip to main content
Glama
holistis

bug-bounty-intelligence-mcp

get_scan_report

Check the status of a submitted smart contract scan job using its job_id. Retrieve the full vulnerability report and findings count once the scan is complete.

Instructions

Poll the status of a job_id returned by scan_contract. Call this every minute or two after submitting — real runs have taken around 25 minutes, delivery is guaranteed within 24h, so polling faster than that just re-checks a job that is still processing. Returns status (queued/processing/complete), the repo under scan, and — once complete — reportUrl (the full Al-Mizaan-validated findings report) and findingsCount. A 404 means the job_id does not exist — double-check what scan_contract actually returned rather than retrying blindly.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYesThe job_id returned by scan_contract

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

TDQS

A4.6/5.0
Behavior5/5

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

With no annotations, the description carries the full burden. It discloses all return fields (status, repo, reportUrl, findingsCount), mentions the 404 error case, and provides realistic timeframes. The mention of 'Al-Mizaan-validated' adds context. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Well-structured: main action first, then timing, return info, and error handling. Each sentence adds value, though slightly verbose for the content. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter polling tool with no output schema, the description provides all necessary information: what it returns, when to call, and error behavior. Nothing essential is missing.

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 description coverage is 100%, so the schema fully documents job_id. The description repeats that it comes from scan_contract but adds no new format or validation details. Baseline 3 is appropriate.

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 states a specific verb ('Poll') and resource ('job_id returned by scan_contract'), and clearly distinguishes from siblings by referencing scan_contract as the source of the job_id. It leaves no ambiguity about what this tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit timing guidance ('every minute or two'), expected durations (25 min to 24h), and warns against polling faster. It also advises on 404 handling, telling the agent to verify the job_id rather than retry blindly. This is complete usage guidance.

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