UNPKG

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.

58 lines 1.75 kB
{ "name": "firecrawl-mcp", "version": "3.17.0", "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.24.0", "dotenv": "^17.2.2", "firecrawl-fastmcp": "^1.0.4", "typescript": "^5.9.2", "zod": "^4.1.5" }, "engines": { "node": ">=18.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" }, "scripts": { "build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "test:endpoints": "node test-endpoints.js", "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" } }