-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
107 lines (107 loc) · 3.49 KB
/
server.json
File metadata and controls
107 lines (107 loc) · 3.49 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.AutomateLab-tech/seo-performance-mcp",
"description": "Per-URL SEO verdicts from GSC, GA4, Matomo, Clarity, AI citations: refresh/expand/merge/kill.",
"title": "SEO Performance MCP",
"websiteUrl": "https://automatelab.tech/products/mcp/seo-performance-mcp/",
"repository": {
"url": "https://github.com/AutomateLab-tech/seo-performance-mcp",
"source": "github"
},
"version": "0.5.0",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@automatelab/seo-performance-mcp",
"version": "0.5.0",
"transport": {
"type": "stdio"
},
"runtimeHint": "npx",
"runtimeArguments": [
{
"type": "positional",
"value": "-y"
}
],
"environmentVariables": [
{
"name": "GSC_SERVICE_ACCOUNT_JSON",
"description": "Base64-encoded Google service account JSON with Search Console read access.",
"isRequired": false,
"isSecret": true
},
{
"name": "GSC_SITE_URL",
"description": "Search Console site URL (e.g. sc-domain:example.com or https://example.com/).",
"isRequired": false
},
{
"name": "MATOMO_URL",
"description": "Matomo instance URL (e.g. https://example.com/analytics).",
"isRequired": false
},
{
"name": "MATOMO_TOKEN",
"description": "Matomo auth token with view access.",
"isRequired": false,
"isSecret": true
},
{
"name": "MATOMO_SITE_ID",
"description": "Matomo idSite for the site to query.",
"isRequired": false
},
{
"name": "GA4_PROPERTY_ID",
"description": "GA4 property ID (numeric, no G- prefix).",
"isRequired": false
},
{
"name": "GA4_SERVICE_ACCOUNT_JSON",
"description": "Base64-encoded Google service account JSON with GA4 Data API access.",
"isRequired": false,
"isSecret": true
},
{
"name": "CLARITY_PROJECT_ID",
"description": "Microsoft Clarity project ID.",
"isRequired": false
},
{
"name": "CLARITY_API_TOKEN",
"description": "Microsoft Clarity Data Export API token.",
"isRequired": false,
"isSecret": true
},
{
"name": "POSTS_SITEMAP_URL",
"description": "XML sitemap URL used to enumerate posts. Primary platform-agnostic discovery path.",
"isRequired": false
},
{
"name": "POSTS_LIST",
"description": "Optional JSON array overriding sitemap discovery.",
"isRequired": false
},
{
"name": "GHOST_ADMIN_API_URL",
"description": "Optional. Ghost Admin API base URL. Pair with GHOST_ADMIN_API_KEY for richer metadata.",
"isRequired": false
},
{
"name": "GHOST_ADMIN_API_KEY",
"description": "Optional. Ghost Admin API key in the form id:secret.",
"isRequired": false,
"isSecret": true
},
{
"name": "CITATION_INTELLIGENCE_URL",
"description": "Optional URL of a citation-intelligence MCP server to delegate AI-citation queries to.",
"isRequired": false
}
]
}
]
}