Metadata-Version: 2.5
Name: blazecrawl-mcp
Version: 0.1.2
Summary: MCP server for BlazeCrawl Core (scrape/map/crawl tools).
Project-URL: Homepage, https://github.com/danishxsethi/blazecrawl
Project-URL: Repository, https://github.com/danishxsethi/blazecrawl
Project-URL: Issues, https://github.com/danishxsethi/blazecrawl/issues
Project-URL: Documentation, https://github.com/danishxsethi/blazecrawl/tree/main/mcp/python
License: Apache-2.0
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27.0
Requires-Dist: mcp<2.0.0,>=1.0.0
Description-Content-Type: text/markdown

# blazecrawl-mcp (Python)

MCP server exposing a self-hosted BlazeCrawl Core instance's `scrape`, `map`,
and `crawl` tools over stdio.

## Install

```bash
pip install blazecrawl-mcp==0.1.2
```

## Generic MCP client configuration

```json
{
  "mcpServers": {
    "blazecrawl": {
      "command": "blazecrawl-mcp",
      "env": {
        "BLAZECRAWL_API_URL": "http://127.0.0.1:8000",
        "BLAZECRAWL_API_KEY": "blz_local_..."
      }
    }
  }
}
```

The server forwards MCP tool calls to the configured BlazeCrawl API. Crawl
calls return a job reference; use the available crawl-status tool to poll it.
