Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 55 additions & 0 deletions developer-guides/mcp-setup-guides/claude-ai.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
---
title: "MCP Web Search & Scrape in Claude.ai"
description: "Add web scraping and search to Claude.ai (Co-work) in 2 minutes"
---

Add web scraping and search capabilities to Claude.ai with Firecrawl MCP using custom connectors.

<Note>
Looking for Claude Code setup? See the [Claude Code guide](/developer-guides/mcp-setup-guides/claude-code) instead.
</Note>

## Quick Setup

### 1. Get Your API Key

Sign up at [firecrawl.dev/app/api-keys](https://www.firecrawl.dev/app/api-keys) and copy your API key.

### 2. Add Custom Connector

Go to [Settings > Connectors](https://claude.ai/settings/connectors) in Claude.ai and click **Add custom connector**.

Fill in the connector details:

- **URL:** `https://mcp.firecrawl.dev/YOUR_API_KEY/v2/mcp`
- **OAuth Client ID:** Leave blank
- **OAuth Client Secret:** Leave blank

Replace `YOUR_API_KEY` in the URL with your actual [Firecrawl API key](https://www.firecrawl.dev/app/api-keys). Your API key is embedded directly in the URL, so no additional authentication fields are needed.

Click **Add** to save the connector.

### 3. Enable in Conversation

In any Claude.ai conversation, click the **+** button at the bottom left, go to **Connectors**, and enable the Firecrawl connector.

## Quick Demo

With the Firecrawl connector enabled, try these prompts:

**Search the web:**
```
Search for the latest Next.js 15 features
```

**Scrape a page:**
```
Scrape firecrawl.dev and tell me what it does
```

**Get documentation:**
```
Find and scrape the Stripe API docs for payment intents
```

Claude will automatically use Firecrawl's search and scrape tools to get the information.
1 change: 1 addition & 0 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@
"icon": "plug",
"pages": [
"developer-guides/mcp-setup-guides/chatgpt",
"developer-guides/mcp-setup-guides/claude-ai",
"developer-guides/mcp-setup-guides/claude-code",
"developer-guides/mcp-setup-guides/cursor",
"developer-guides/mcp-setup-guides/windsurf",
Expand Down