v2.48.4

calcom/cal.diyv2.48.4Mar 25, 2026by j-mendez

AI Summary

Adds a new Model Context Protocol (MCP) server crate that allows users to integrate Spider directly into AI agents like Claude Code and Claude Desktop for scraping and crawling tasks.

Key Highlights

  • New 'spider_mcp' crate enabling Model Context Protocol integration
  • Direct integration with Claude Code and Claude Desktop AI agents
  • Tools for scraping pages, crawling sites, extracting links, and transforming HTML

New Features

  • MCP server implementation for AI agents
  • Claude Code and Claude Desktop configuration support
  • Tools: spider_scrape, spider_crawl, spider_links, spider_transform

Full Release Notes

New `spider_mcp` crate — MCP server for Spider.

```bash
cargo install spider_mcp
```

Setup (Claude Code `~/.claude/settings.json` or Claude Desktop config):

```json
{ "mcpServers": { "spider": { "command": "spider-mcp" } } }
```

Usage examples:

```
Scrape a page:       "Fetch https://example.com as markdown"
Crawl a site:        "Crawl https://example.com up to 5 pages"
Extract links:       "Get all links from https://example.com"
Transform HTML:      "Convert this HTML to markdown: <h1>Hello</h1>"
```

Tools: `spider_scrape` · `spider_crawl` · `spider_links` · `spider_transform`