Skip to main content
Glama
Jaycee1996

Firecrawl MCP Server

by Jaycee1996

firecrawl_check_crawl_status

Monitor the progress and retrieve results of a web crawling job to track completion status and access extracted content.

Instructions

Check the status of a crawl job.

Usage Example:

{ "name": "firecrawl_check_crawl_status", "arguments": { "id": "550e8400-e29b-41d4-a716-446655440000" } }

Returns: Status and progress of the crawl job, including results if available.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Implementation Reference

  • The handler function that executes the tool logic by calling getCrawlStatus on the Firecrawl client with the provided crawl ID.
    execute: async ( args: unknown, { session }: { session?: SessionData } ): Promise<string> => { const client = getClient(session); const res = await client.getCrawlStatus((args as any).id as string); return asText(res); },
  • Zod schema defining the input parameter 'id' as a string.
    parameters: z.object({ id: z.string() }),
  • src/index.ts:523-548 (registration)
    Registration of the 'firecrawl_check_crawl_status' tool using server.addTool, including name, description, parameters, and execute handler.
    server.addTool({ name: 'firecrawl_check_crawl_status', description: ` Check the status of a crawl job. **Usage Example:** \`\`\`json { "name": "firecrawl_check_crawl_status", "arguments": { "id": "550e8400-e29b-41d4-a716-446655440000" } } \`\`\` **Returns:** Status and progress of the crawl job, including results if available. `, parameters: z.object({ id: z.string() }), execute: async ( args: unknown, { session }: { session?: SessionData } ): Promise<string> => { const client = getClient(session); const res = await client.getCrawlStatus((args as any).id as string); return asText(res); }, });

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jaycee1996/firecrawl-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server