map

Pack: firecrawl · Endpoint: https://gateway.pipeworx.io/firecrawl/mcp

Crawl a website and return all discovered URLs (up to 5,000). Optionally filter by a search term to rank discovered links by relevance. Returns {url, count, links[]}.

Parameters

NameTypeRequiredDescription
urlstringyesThe website URL to map, e.g. “https://example.com
searchstringnoOptional search term to filter discovered URLs by relevance.
limitnumbernoMaximum number of URLs to return (default 100, max 5000).
_apiKeystringnoOptional — your own Firecrawl API key for higher limits; omit to use the shared Pipeworx key.

Example call

Arguments

{
  "url": "https://example.com"
}

curl

curl -X POST https://gateway.pipeworx.io/firecrawl/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"map","arguments":{"url":"https://example.com"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('map', {
  "url": "https://example.com"
});

More examples

{
  "url": "https://docs.example.com",
  "search": "api reference",
  "limit": 50
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "firecrawl": {
      "url": "https://gateway.pipeworx.io/firecrawl/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026