.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/firecrawl/firecrawl-mcp-server
home/mcp-servers/firecrawl/firecrawl-mcp-server
firecrawl avatar

firecrawl-mcp-server

byfirecrawl· 3 MCP servers

Installs

480k

Stars

7.1k

Forks

821

Category

Browser & Automation

View on GitHub

TL;DR

A Model Context Protocol (MCP) server that brings Firecrawl to MCP-compatible AI agents — search, scrape, and interact with the live web for clean, agent-ready context.

How to install firecrawl-mcp-server?

firecrawl/firecrawl-mcp-server
$git clone https://github.com/firecrawl/firecrawl-mcp-server

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install firecrawl-mcp-server by running `git clone https://github.com/firecrawl/firecrawl-mcp-server`, then use it for the current task and follow its documentation at https://github.com/firecrawl/firecrawl-mcp-server.

Files · 1

View on GitHub
README.md
1<div align="center">
2 <a name="readme-top"></a>
3 <img
4 src="https://raw.githubusercontent.com/firecrawl/firecrawl-mcp-server/main/img/fire.png"
5 height="140"
6 >
7</div>
8 
9# Firecrawl MCP Server
10 
11A Model Context Protocol (MCP) server that brings [Firecrawl](https://github.com/firecrawl/firecrawl) to MCP-compatible AI agents — search, scrape, and interact with the live web for clean, agent-ready context.
12 
13> Big thanks to [@vrknetha](https://github.com/vrknetha), [@knacklabs](https://www.knacklabs.ai) for the initial implementation!
14 
15## Features
16 
17- Search the web and get full page content
18- Scrape any URL into clean, structured data
19- Interact with pages — click, navigate, and operate
20- Deep research with autonomous agent
21- Automatic retries and rate limiting
22- Cloud and self-hosted support
23- SSE support
24 
25> Play around with [our MCP Server on MCP.so's playground](https://mcp.so/playground?server=firecrawl-mcp-server) or on [Klavis AI](https://www.klavis.ai/mcp-servers).
26 
27## Installation
28 
29### Hosted MCP (keyless free tier)
30 
31Connect to the remote hosted server with no setup:
32 
33```
34https://mcp.firecrawl.dev/v2/mcp
35```
36 
37On the keyless free tier, `scrape`, `search`, and `interact` work without an API key (rate-limited). Other tools such as `crawl`, `map`, `agent`, and `extract` still need a key.
38 
39Prefer an API key or OAuth whenever the human can sign up. It unlocks the full tool set and higher limits. With a key, use:
40 
41```
42https://mcp.firecrawl.dev/{FIRECRAWL_API_KEY}/v2/mcp
43```
44 
45See the [MCP server docs](https://docs.firecrawl.dev/mcp-server) and the [agent onboarding guide](https://www.firecrawl.dev/agent-onboarding/SKILL.md) for setup details.
46 
47#### Search-only endpoint
48 
49A read-only, search-only surface is also hosted at:
50 
51```
52https://mcp.firecrawl.dev/v2/mcp-search
53```
54 
55It exposes a fixed set of six read-only tools: `firecrawl_search` and the five `firecrawl_research_*` tools. It performs no page-content fetching and has its own OAuth identity; the full endpoint above is unchanged. See [docs/search-profile.md](docs/search-profile.md) for the full contract.
56 
57### Running with npx
58 
59```bash
60env FIRECRAWL_API_KEY=fc-YOUR_API_KEY npx -y firecrawl-mcp
61```
62 
63### Manual Installation
64 
65```bash
66npm install -g firecrawl-mcp
67```
68 
69### Running on Cursor
70 
71Configuring Cursor 🖥️
72Note: Requires Cursor version 0.45.6+
73For the most up-to-date configuration instructions, please refer to the official Cursor documentation on configuring MCP servers:
74[Cursor MCP Server Configuration Guide](https://docs.cursor.com/context/model-context-protocol#configuring-mcp-servers)
75 
76To configure Firecrawl MCP in Cursor **v0.48.6**
77 
781. Open Cursor Settings
792. Go to Features > MCP Servers
803. Click "+ Add new global MCP server"
814. Enter the following code:
82 ```json
83 {
84 "mcpServers": {
85 "firecrawl-mcp": {
86 "command": "npx",
87 "args": ["-y", "firecrawl-mcp"],
88 "env": {
89 "FIRECRAWL_API_KEY": "YOUR-API-KEY"
90 }
91 }
92 }
93 }
94 ```
95 
96To configure Firecrawl MCP in Cursor **v0.45.6**
97 
981. Open Cursor Settings
992. Go to Features > MCP Servers
1003. Click "+ Add New MCP Server"
1014. Enter the following:
102 - Name: "firecrawl-mcp" (or your preferred name)
103 - Type: "command"
104 - Command: `env FIRECRAWL_API_KEY=your-api-key npx -y firecrawl-mcp`
105 
106> If you are using Windows and are running into issues, try `cmd /c "set FIRECRAWL_API_KEY=your-api-key && npx -y firecrawl-mcp"`
107 
108Replace `your-api-key` with your Firecrawl API key. If you don't have one yet, you can create an account and get it from https://www.firecrawl.dev/app/api-keys
109 
110After adding, refresh the MCP server list to see the new tools. The Composer Agent will automatically use Firecrawl MCP when appropriate, but you can explicitly request it by describing your web scraping needs. Access the Composer via Command+L (Mac), select "Agent" next to the submit button, and enter your query.
111 
112### Running on Windsurf
113 
114Add this to your `./codeium/windsurf/model_config.json`

Preview

firecrawl/firecrawl-mcp-serverfirecrawl/firecrawl-mcp-server
Repofirecrawl/firecrawl-mcp-server
TypeMCP Servers
CategoryBrowser & Automation
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

MCPbatch-processingclaude

Related

6 picks
Type
  1. microsoft avatarplaywright-mcpPlaywright Tools for MCPMCP ServersJul 202626M36k
  2. cloudflare avatarplaywright-mcpPlaywright Tools for MCPMCP ServersApr 202626M250
  3. microsoft avatarPlaywright MCPBrowser automation for agents via accessibility snapshotsMCP Servers6 days ago25M35k
  4. d4vinci avatarscraplingWeb scraping with stealth HTTP, real browsers, and Cloudflare bypass. CSS selectors supported.MCP ServersJul 2026930k72k
  5. nickclyde avatarduckduckgo-mcp-serverMCP Server for searching via DuckDuckGoMCP ServersJul 2026121k1.4k
  6. apify avatarapify-mcp-serverExtract data from any website with thousands of scrapers, crawlers, and automations on Apify Store ⚡MCP ServersJul 202659k2.3k