-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.16 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.16 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
{
"name": "mcp-server-gsc",
"version": "0.3.0",
"description": "Enhanced Model Context Protocol server for Google Search Console with 25K row limit, regex filters, and automatic quick wins detection",
"author": "Yuexun Jiang <yuexunjiang@gmail.com>",
"license": "MIT",
"type": "module",
"bin": {
"mcp-server-gsc": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"dev:remote": "wrangler dev src/remote.ts",
"deploy": "wrangler deploy src/remote.ts"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@google-cloud/local-auth": "^3.0.1",
"@hono/mcp": "^0.2.3",
"@modelcontextprotocol/sdk": "^1.24.3",
"google-auth-library": "^9.15.0",
"googleapis": "^146.0.0",
"hono": "^4.12.0",
"zod": "^3.25.0",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.10.1",
"shx": "^0.3.4",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"wrangler": "^4.67.0"
},
"overrides": {
"buffer-equal-constant-time": "file:./patches/buffer-equal-constant-time"
}
}