v2.48.4

mikeqzy/3dgs-avatar-releasev2.48.4Mar 25, 2026by j-mendez

AI Summary

Adds a new MCP server crate to enable integration with AI tools like Claude.

Key Highlights

  • New `spider_mcp` crate for Model Context Protocol
  • Integration instructions for Claude Code and Desktop
  • New scraping tools for extraction and transformation

New Features

  • Spider MCP server with 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`