firecrawl-mcp-server
🔥 Official Firecrawl MCP Server - Adds powerful web scraping to Cursor, Claude and any other LLM clients.
GitHub Stars
4,435
User Rating
Not Rated
Favorites
0
Views
69
Forks
450
Issues
49
Installation
Difficulty
IntermediateEstimated Time
10-20 minutes
Installation
Installation
Prerequisites
Please specify required software and versions:Node.js: 18.0.0 or higher
npm: 8.0.0 or higher
Installation Steps
1. Running with npx
bash
env FIRECRAWL_API_KEY=fc-YOUR_API_KEY npx -y firecrawl-mcp
2. Manual Installation
bash
npm install -g firecrawl-mcp
3. Configure Claude Desktop
Editclaude_desktop_config.json to add the MCP server:
json
{
"mcpServers": {
"firecrawl-mcp": {
"command": "npx",
"args": ["-y", "firecrawl-mcp"],
"env": {
"FIRECRAWL_API_KEY": "YOUR-API-KEY"
}
}
}
}
Troubleshooting
Common Issues
Issue: Server won't start Solution: Check Node.js version and reinstall dependencies. Issue: Not recognized by Claude Desktop Solution: Verify configuration file path and syntax.Additional Resources
Author Information
Related MCPs
npm-helper-mcp
6
NPM Helper is a tool designed to assist with npm package management, providing features for updating dependencies and searching for packages. It allows for safe upgrades of a project's package.json, ensuring that dependencies are updated to the latest compatible versions without conflicts. This tool enhances efficiency in managing project dependencies while minimizing errors.