-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.27 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
{
"name": "web-search-mcp-server",
"version": "0.3.1",
"description": "MCP server for web search with full page content extraction, search summaries, and single page content extraction",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"bin": {
"web-search-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc && echo '✅ TypeScript compilation complete: dist/index.js'",
"dev": "tsx watch src/index.ts",
"start": "node ./dist/index.js",
"lint": "eslint \"src/**/*.ts\"",
"format": "prettier --write ."
},
"keywords": [
"mcp",
"web-search",
"ai",
"llm"
],
"author": "Mark Russell",
"repository": {
"type": "git",
"url": "https://github.com/mrkrsl/web-search-mcp.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.0",
"axios": "^1.6.8",
"cheerio": "^1.0.0-rc.12",
"p-limit": "^6.2.0",
"p-retry": "^6.2.1",
"playwright": "^1.48.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/node": "^24.0.10",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"esbuild": "^0.25.5",
"eslint": "^9.30.1",
"prettier": "^3.2.5",
"tsx": "^4.7.0",
"typescript": "^5.4.5"
}
}