forked from mixelpixx/Google-Search-MCP-Server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.64 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.64 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
{
"name": "google-search-mcp",
"version": "3.0.0",
"description": "Enhanced MCP server for Google search with AI-powered research synthesis, source quality assessment, and deduplication",
"type": "module",
"bin": {
"google-search-mcp": "./dist/google-search-v3.js"
},
"files": [
"dist/**/*",
"skills/**/*",
"README.md",
".env.example"
],
"scripts": {
"build": "tsc",
"start": "node dist/google-search.js",
"start:v2": "node dist/google-search-v2.js",
"start:v2:http": "MCP_TRANSPORT=http node dist/google-search-v2.js",
"start:v3": "node dist/google-search-v3.js",
"start:v3:http": "MCP_TRANSPORT=http node dist/google-search-v3.js",
"dev": "tsc -w",
"start:python": "concurrently \"python google_search.py\" \"python link_view.py\"",
"start:all": "concurrently \"npm run start:python\" \"npm run start\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.21.1",
"@mozilla/readability": "^0.6.0",
"@types/turndown": "^5.0.5",
"axios": "^1.7.9",
"better-sqlite3": "^12.6.2",
"cheerio": "^1.0.0",
"dompurify": "^3.2.3",
"express": "^4.21.2",
"jsdom": "^25.0.1",
"markdown-it": "^14.1.0",
"readability": "^0.1.0",
"turndown": "^7.2.0",
"zod": "^3.24.1"
},
"optionalDependencies": {
"googleapis": "^144.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cheerio": "^0.22.35",
"@types/dompurify": "^3.0.5",
"@types/express": "^4.17.21",
"@types/jsdom": "^21.1.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20.17.21",
"concurrently": "^9.1.0",
"typescript": "^5.7.2"
}
}