firecrawl-mcp
Version:
MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.
62 lines • 1.88 kB
JSON
{
"name": "firecrawl-mcp",
"version": "3.22.3",
"description": "MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.",
"type": "module",
"mcpName": "io.github.firecrawl/firecrawl-mcp-server",
"bin": {
"firecrawl-mcp": "dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"dependencies": {
"@mendable/firecrawl-js": "4.25.2",
"dotenv": "^17.2.2",
"fastmcp": "4.3.2",
"zod": "^4.1.5"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"mcp",
"firecrawl",
"web-search",
"web-data",
"web-interaction"
],
"repository": {
"type": "git",
"url": "git+https://github.com/firecrawl/firecrawl-mcp-server.git"
},
"author": "firecrawl",
"bugs": {
"url": "https://github.com/firecrawl/firecrawl-mcp-server/issues"
},
"homepage": "https://github.com/firecrawl/firecrawl-mcp-server#readme",
"devDependencies": {
"@types/node": "^24.3.1",
"@typescript-eslint/eslint-plugin": "8.48.1",
"@typescript-eslint/parser": "8.48.1",
"eslint": "8.57.1",
"eslint-config-prettier": "10.1.8",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"scripts": {
"build": "rm -rf dist && tsup && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"test": "npm run build && node --test tests/*.test.mjs",
"start": "node dist/index.js",
"start:cloud": "CLOUD_SERVICE=true node dist/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write .",
"publish-prod": "npm run build && npm publish",
"publish-beta": "npm run build && npm publish --tag beta"
}
}