MCP Firecrawl
Allows integration with the OpenAI Agents SDK for web scraping, crawling, and search.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP FirecrawlSearch for recent advancements in quantum computing"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP Firecrawl
A production-ready Model Context Protocol (MCP) server that integrates with the Firecrawl API to give AI assistants the power to scrape, crawl, and search the web.
Works with Claude Desktop, Cursor, VS Code (Cline/Roo Code), Continue, OpenAI Agents SDK, and any other MCP-compatible AI tool.
Features
Tool | Description | Input |
| Scrape any webpage → returns clean Markdown content + metadata |
|
| Crawl multiple pages (up to 100) from a website |
|
| Search the web using Firecrawl's search engine |
|
Related MCP server: WebSearch
Quick Start
# 1. Clone
git clone https://github.com/YOUR_USERNAME/MCP.git
cd MCP
# 2. Install
npm install
# 3. Configure
cp .env.example .env
# Edit .env → add your Firecrawl API key:
# FIRECRAWL_API_KEY=fc-your-key-here
# 4. Build & Run
npm run build
npm start✅ Server is now running on stdio (default mode).
Usage
Command Line Test
# List available tools
node test-mcp.mjs tools
# Scrape a website
node test-mcp.mjs scrape https://example.com
# Search the web
node test-mcp.mjs search "latest TypeScript news"With OpenAI Agents SDK (TypeScript)
import { Agent, run, MCPServerStdio } from "@openai/agents";
const mcp = new MCPServerStdio({
name: "Firecrawl",
fullCommand: "node dist/server.js",
env: { FIRECRAWL_API_KEY: "fc-..." },
});
await mcp.connect();
const agent = new Agent({
name: "Web Assistant",
instructions: "Use tools to scrape, crawl, and search the web.",
mcpServers: [mcp],
});
const result = await run(agent, "Scrape https://example.com");
console.log(result.finalOutput);
await mcp.close();Integration with AI Tools
Claude Desktop
Add to %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"firecrawl": {
"command": "node",
"args": ["C:/path/to/MCP/dist/server.js"],
"env": {
"FIRECRAWL_API_KEY": "fc-..."
}
}
}
}Cursor
Settings → Features → MCP → Add Server:
Name: firecrawl
Type: command
Command: node "C:/path/to/MCP/dist/server.js"
Environment: FIRECRAWL_API_KEY=fc-...VS Code + Cline / Roo Code
File: .vscode/cline_mcp_settings.json
{
"mcpServers": {
"firecrawl": {
"command": "node",
"args": ["C:/path/to/MCP/dist/server.js"],
"env": { "FIRECRAWL_API_KEY": "fc-..." },
"disabled": false,
"autoApprove": []
}
}
}Continue (VS Code / JetBrains)
File: ~/.continue/config.json
{
"experimental": {
"mcpServers": {
"firecrawl": {
"command": "node",
"args": ["C:/path/to/MCP/dist/server.js"],
"env": { "FIRECRAWL_API_KEY": "fc-..." }
}
}
}
}opencode
File: ./opencode.json
{
"mcp": {
"firecrawl": {
"type": "local",
"command": ["node", "MCP/dist/server.js"],
"enabled": true,
"env": { "FIRECRAWL_API_KEY": "fc-..." }
}
}
}HTTP Mode (Streamable HTTP)
Can't use stdio? Run the server as an HTTP endpoint instead:
npm run start:http
# Listening on http://127.0.0.1:3001/mcpThen connect any MCP client to that URL.
Project Structure
MCP/
├── src/
│ ├── server.ts # Entry point (stdio + HTTP modes)
│ ├── tools/
│ │ ├── scrape.ts # scrape_url tool
│ │ ├── crawl.ts # crawl_website tool
│ │ └── search.ts # search_web tool
│ ├── services/
│ │ └── firecrawl.ts # FirecrawlApp API wrapper
│ └── types/
│ └── index.ts # TypeScript interfaces
├── test-mcp.mjs # CLI test utility
├── .env.example # Environment template
├── package.json
├── tsconfig.json
└── README.mdEnvironment Variables
Variable | Required | Default | Description |
| ✅ Yes | — | Your Firecrawl API key |
| ❌ No |
| HTTP bind address (HTTP mode only) |
| ❌ No |
| HTTP port (HTTP mode only) |
NPM Scripts
Script | Description |
| Compile TypeScript → |
| Run in stdio mode |
| Run in HTTP mode |
| Run with hot-reload (stdio) |
| Run with hot-reload (HTTP) |
| Delete |
Tech Stack
Runtime: Node.js 18+
Language: TypeScript
MCP SDK:
@modelcontextprotocol/sdkScraping Engine:
firecrawlSDKValidation:
zodConfig:
dotenv
Requirements
Node.js 18 or higher
A Firecrawl API key (free tier available)
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mustafamemon265789-cloud/MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server