Connect fastCRW to MCP clients when you want agents to call scrape, crawl, and map tools through a standard interface.
If your agent runtime already speaks MCP, you can expose fastCRW as a standard tool instead of wrapping the HTTP API yourself.
{
"mcpServers": {
"crw": {
"command": "crw",
"args": ["mcp"]
}
}
}
MCP is useful when the agent host already expects tools to be registered through a standard interface. That reduces one layer of custom glue code between the agent and your scraping service.
Typical fits:
MCP gives agents a consistent way to discover and call tools. That matters when the workflow moves from finding URLs to scraping content and handing the result to downstream retrieval or reasoning steps.
One common setup looks like this:
The value is not just convenience. It also keeps the boundary clear: fastCRW fetches and extracts, while the agent decides what to do next.
MCP is an integration layer, not a hosting mode. You can use the same general approach whether fastCRW is:
map versus scrape.