-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
52 lines (51 loc) · 1.17 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
{
"name": "@pinkpixel/web-scout-mcp",
"version": "1.5.5",
"description": "MCP server for web search and content extraction with multiple URL support and memory optimizations",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"module": "src/index.ts",
"bin": {
"web-scout-mcp": "./dist/index.js"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc && npx @smithery/cli build",
"dev": "npx @smithery/cli dev",
"start": "node dist/index.js",
"production": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinkpixel-dev/web-scout-mcp.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"web-search",
"web-content",
"web-scraping",
"content-extraction"
],
"author": "Pink Pixel",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.1",
"async": "^3.2.6",
"axios": "^1.12.2",
"cheerio": "^1.1.2",
"jsdoctypeparser": "^9.0.0",
"uuid": "^13.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^24.5.2",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=18.0.0"
}
}