Skip to main content
Glama
rapid7

Rapid7 Bulk Export MCP Server

Official
by rapid7

Download Rapid7 Export

download_rapid7_export
Idempotent

Start downloading a completed Rapid7 export and loading it into the database for querying. Use after status confirms COMPLETE; progress can be polled with the status tool.

Instructions

Start downloading a completed Rapid7 export and loading it into the database.

Call this after check_rapid7_export_status confirms the export is COMPLETE. This kicks off the download and load in the background and returns immediately — large exports (potentially millions of rows) can take several minutes to load, longer than most MCP clients will wait on a single tool call. Poll progress with check_rapid7_export_status(export_id).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
export_idYesThe export ID of a completed export.
export_typeNoType of export. One of "vulnerability", "policy", "remediation", or "asset_software".vulnerability

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv0.6.2
    • changedInput schema / properties / export_type / description
      Previous value: -"Type of export. One of \"vulnerability\", \"policy\",\n         or \"remediation\"."New value: +"Type of export. One of \"vulnerability\", \"policy\",\n         \"remediation\", or \"asset_software\"."
  2. First observedv0.4.1

TDQS

A4.7/5.0
Behavior5/5

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

Even though annotations carry idempotent/destructive flags, the description adds critical runtime behavior: it is a background operation that returns immediately, can take minutes for large exports, and requires polling for progress. This is exactly the kind of behavioral trait an agent needs beyond readOnly/destructive hints.

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?

Three sentences, each earning its place: the purpose, the precondition, and the async behavior/follow-up. No redundant or vague filler.

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 2-parameter async tool with full schema coverage and an output schema, the description covers the call ordering, the wait-time pitfall, and the polling mechanism. Nothing essential is missing for selecting and invoking it correctly.

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 already documents export_id and export_type. The description references export_id in usage but adds no parameter-level nuance beyond the schema, so the 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 action ('Start downloading a completed Rapid7 export and loading it into the database') with a clear resource and lifecycle stage. It differentiates this from check_rapid7_export_status by explicitly referring to the completed-export precondition, and from start_rapid7_export by 'completed export.'

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?

It provides an explicit precondition: 'Call this after check_rapid7_export_status confirms the export is COMPLETE.' It also tells the agent what to expect (returns immediately) and how to follow up ('Poll progress with check_rapid7_export_status(export_id)'). This is clear, actionable usage guidance.

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