-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.59 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
61
62
63
64
65
66
{
"name": "@automatelab/seo-performance-mcp",
"version": "1.0.0",
"mcpName": "io.github.AutomateLab-tech/seo-performance-mcp",
"description": "Post-publish SEO performance MCP. Unifies Google Search Console, Matomo, GA4, Clarity, and AI-citation signals per URL and emits a verdict (refresh / expand / merge / kill / double_down / hold) per post with reason codes.",
"license": "MIT",
"author": "automatelab.tech",
"homepage": "https://github.com/AutomateLab-tech/seo-performance-mcp",
"repository": {
"type": "git",
"url": "git+https://github.com/AutomateLab-tech/seo-performance-mcp.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"type": "module",
"bin": {
"seo-performance-mcp": "dist/index.js",
"seo-perf-cli": "dist/cli.js"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"duckdb-async": "1.2.0",
"fast-xml-parser": "4.5.1",
"googleapis": "144.0.0",
"undici": "7.25.0",
"zod": "3.25.76"
},
"devDependencies": {
"@types/node": "22.19.19",
"tsx": "4.22.0",
"typescript": "5.7.3",
"vitest": "3.2.4"
},
"files": [
"dist",
"skills",
"cursor",
"smithery.yaml",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"seo",
"analytics",
"gsc",
"matomo",
"ga4",
"clarity",
"content-operations",
"ghost"
]
}