cancel_crawlhtml_job
Stop an active HTML crawl job in progress by specifying its unique crawl ID. This tool ensures the timely termination of Firecrawl operations within the Unstructured API MCP Server.
Instructions
Cancel an in-progress Firecrawl HTML crawl job.
Args:
crawl_id: ID of the crawl job to cancel
Returns:
Dictionary containing the result of the cancellation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
crawl_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"crawl_id": {
"title": "Crawl Id",
"type": "string"
}
},
"required": [
"crawl_id"
],
"title": "cancel_crawlhtml_jobArguments",
"type": "object"
}