@getmcpads/google-search-console-mcp-server 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/package.json +56 -16
package/README.md
CHANGED
|
@@ -15,6 +15,8 @@ machine.
|
|
|
15
15
|
npx -y @getmcpads/google-search-console-mcp-server
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
+
Also listed in the [MCP Registry](https://registry.modelcontextprotocol.io) as **`com.getmcpads/google-search-console`**, so clients that read the registry can install it by name.
|
|
19
|
+
|
|
18
20
|
> **Prefer not to run it yourself?** [getmcpads.com](https://www.getmcpads.com) is the hosted
|
|
19
21
|
> version of this server, with Search Console alongside Meta Ads, Google Ads, TikTok Ads,
|
|
20
22
|
> Pinterest Ads and Google Analytics behind a single endpoint, hosted OAuth, and
|
package/package.json
CHANGED
|
@@ -1,13 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getmcpads/google-search-console-mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"mcpName": "com.getmcpads/google-search-console",
|
|
4
5
|
"description": "Open-source MCP server for Google Search Console. 20 read-only tools covering Search Analytics, sites, sitemaps and URL Inspection. Self-hosted, bring your own credentials.",
|
|
5
6
|
"license": "Apache-2.0",
|
|
6
7
|
"type": "module",
|
|
7
8
|
"main": "./dist/index.js",
|
|
8
9
|
"types": "./dist/index.d.ts",
|
|
9
|
-
"bin": {
|
|
10
|
-
|
|
10
|
+
"bin": {
|
|
11
|
+
"google-search-console-mcp": "dist/cli.js"
|
|
12
|
+
},
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./dist/index.d.ts",
|
|
16
|
+
"import": "./dist/index.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
11
19
|
"scripts": {
|
|
12
20
|
"build": "tsup",
|
|
13
21
|
"dev": "tsx watch src/cli.ts",
|
|
@@ -18,22 +26,54 @@
|
|
|
18
26
|
"typecheck": "tsc --noEmit",
|
|
19
27
|
"prepublishOnly": "npm run build"
|
|
20
28
|
},
|
|
21
|
-
"dependencies": {
|
|
29
|
+
"dependencies": {
|
|
30
|
+
"@modelcontextprotocol/sdk": "^1.12.0",
|
|
31
|
+
"zod": "^3.24.0"
|
|
32
|
+
},
|
|
22
33
|
"devDependencies": {
|
|
23
|
-
"@eslint/js": "^9.0.0",
|
|
24
|
-
"
|
|
25
|
-
"
|
|
34
|
+
"@eslint/js": "^9.0.0",
|
|
35
|
+
"@types/node": "^22.0.0",
|
|
36
|
+
"eslint": "^9.0.0",
|
|
37
|
+
"globals": "^15.0.0",
|
|
38
|
+
"tsup": "^8.0.0",
|
|
39
|
+
"tsx": "^4.0.0",
|
|
40
|
+
"typescript": "^5.7.0",
|
|
41
|
+
"typescript-eslint": "^8.0.0"
|
|
42
|
+
},
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=18.0.0"
|
|
26
45
|
},
|
|
27
|
-
"
|
|
28
|
-
|
|
46
|
+
"files": [
|
|
47
|
+
"dist/",
|
|
48
|
+
"LICENSE",
|
|
49
|
+
"NOTICE",
|
|
50
|
+
"README.md"
|
|
51
|
+
],
|
|
29
52
|
"keywords": [
|
|
30
|
-
"mcp",
|
|
31
|
-
"
|
|
32
|
-
"
|
|
53
|
+
"mcp",
|
|
54
|
+
"mcp-server",
|
|
55
|
+
"model-context-protocol",
|
|
56
|
+
"google-search-console",
|
|
57
|
+
"search-console",
|
|
58
|
+
"gsc",
|
|
59
|
+
"seo",
|
|
60
|
+
"search-analytics",
|
|
61
|
+
"url-inspection",
|
|
62
|
+
"claude",
|
|
63
|
+
"chatgpt",
|
|
64
|
+
"cursor",
|
|
65
|
+
"ai-agent"
|
|
33
66
|
],
|
|
34
|
-
"repository": {
|
|
35
|
-
|
|
36
|
-
|
|
67
|
+
"repository": {
|
|
68
|
+
"type": "git",
|
|
69
|
+
"url": "git+https://github.com/getmcpads-com/google-search-console-mcp-server.git"
|
|
70
|
+
},
|
|
71
|
+
"homepage": "https://www.getmcpads.com/tools/search-console",
|
|
72
|
+
"bugs": {
|
|
73
|
+
"url": "https://github.com/getmcpads-com/google-search-console-mcp-server/issues"
|
|
74
|
+
},
|
|
37
75
|
"author": "GetMCPAds (https://www.getmcpads.com)",
|
|
38
|
-
"publishConfig": {
|
|
76
|
+
"publishConfig": {
|
|
77
|
+
"access": "public"
|
|
78
|
+
}
|
|
39
79
|
}
|