-
Notifications
You must be signed in to change notification settings - Fork 781
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "firecrawl-mcp",
"version": "3.22.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"
},
"scripts": {
"build": "rm -rf dist && tsup && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"test": "echo 'No tests'",
"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 .",
"prepare": "npm run build",
"publish-prod": "npm run build && npm publish",
"publish-beta": "npm run build && npm publish --tag beta"
},
"license": "MIT",
"dependencies": {
"@mendable/firecrawl-js": "4.25.2",
"@modelcontextprotocol/sdk": "1.18.0",
"@standard-schema/spec": "^1.0.0",
"dotenv": "^17.2.2",
"execa": "^9.6.0",
"file-type": "^21.0.0",
"fuse.js": "^7.1.0",
"mcp-proxy": "^6.5.1",
"strict-event-emitter-types": "^2.0.0",
"typescript": "^5.9.2",
"uri-templates": "^0.2.0",
"xsschema": "0.3.5",
"yargs": "^18.0.0",
"zod": "^4.1.5",
"zod-to-json-schema": "^3.24.6"
},
"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",
"@types/uri-templates": "^0.1.34",
"@types/yargs": "^17.0.33",
"tsup": "^8.5.0"
}
}