69 lines
1.9 KiB
JSON
69 lines
1.9 KiB
JSON
{
|
|
"name": "firecrawl-mcp",
|
|
"version": "1.12.0",
|
|
"description": "MCP server for Firecrawl web scraping integration. Supports both cloud and self-hosted instances. Features include web scraping, batch processing, structured data extraction, and LLM-powered content analysis.",
|
|
"type": "module",
|
|
"bin": {
|
|
"firecrawl-mcp": "dist/index.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
|
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
|
|
"start": "node dist/index.js",
|
|
"lint": "eslint src/**/*.ts",
|
|
"lint:fix": "eslint src/**/*.ts --fix",
|
|
"format": "prettier --write .",
|
|
"prepare": "npm run build",
|
|
"publish": "npm run build && npm publish"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@mendable/firecrawl-js": "^1.19.0",
|
|
"@modelcontextprotocol/sdk": "^1.4.1",
|
|
"dotenv": "^16.4.7",
|
|
"express": "^5.1.0",
|
|
"shx": "^0.3.4",
|
|
"ws": "^8.18.1"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^29.7.0",
|
|
"@types/express": "^5.0.1",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^20.10.5",
|
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
"@typescript-eslint/parser": "^7.0.0",
|
|
"eslint": "^8.56.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"jest": "^29.7.0",
|
|
"jest-mock-extended": "^4.0.0-beta1",
|
|
"prettier": "^3.1.1",
|
|
"ts-jest": "^29.1.1",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"firecrawl",
|
|
"web-scraping",
|
|
"crawler",
|
|
"content-extraction"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/mendableai/firecrawl-mcp-server.git"
|
|
},
|
|
"author": "vrknetha",
|
|
"bugs": {
|
|
"url": "https://github.com/mendableai/firecrawl-mcp-server/issues"
|
|
},
|
|
"homepage": "https://github.com/mendableai/firecrawl-mcp-server#readme"
|
|
}
|