-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.67 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
{
"name": "mcp-gsc",
"version": "0.2.0",
"description": "Google Search Console MCP server — query search analytics, inspect URLs, manage sitemaps & more via natural language",
"type": "module",
"main": "dist/index.js",
"bin": {
"mcp-gsc": "dist/index.js"
},
"files": [
"dist",
"logo.svg",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun src/index.ts",
"build": "bun build src/index.ts --compile --outfile=mcp-gsc",
"build:npm": "bun build src/index.ts --bundle --target node --outfile dist/index.js && node -e \"const f='dist/index.js';require('fs').writeFileSync(f,require('fs').readFileSync(f,'utf8').replace('#!/usr/bin/env bun','#!/usr/bin/env node'))\"",
"prepublishOnly": "bun run build:npm",
"test": "bun test",
"typecheck": "tsc --noEmit",
"setup": "bun run src/auth/setup.ts",
"inspect": "bunx @modelcontextprotocol/inspector bun src/index.ts",
"format": "biome format --write .",
"lint": "biome check .",
"check": "biome check --write ."
},
"keywords": [
"mcp",
"google-search-console",
"gsc",
"seo",
"ai",
"claude",
"model-context-protocol",
"bun"
],
"author": "pijusz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pijusz/mcp-gsc.git"
},
"engines": {
"node": ">=18"
},
"homepage": "https://github.com/pijusz/mcp-gsc#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"google-auth-library": "^10.6.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@types/bun": "1.3.12",
"typescript": "6.0.3"
},
"mcpName": "io.github.pijusz/mcp-gsc"
}