-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
71 lines (71 loc) · 2.65 KB
/
server.json
File metadata and controls
71 lines (71 loc) · 2.65 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.alexpota/cloudscope",
"description": "Azure + GCP cost management: spending, forecasts, anomalies, budgets, idle resources, and tags.",
"repository": {
"url": "https://github.com/alexpota/cloudscope-mcp",
"source": "github"
},
"version": "0.3.2",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "cloudscope-mcp",
"version": "0.3.2",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "AZURE_SUBSCRIPTION_ID",
"description": "Azure subscription ID to query for cost data. Optional; auto-detected from az login session if not set.",
"isRequired": false,
"isSecret": false
},
{
"name": "AZURE_TENANT_ID",
"description": "Azure tenant ID for service principal authentication. Optional; falls back to DefaultAzureCredential (e.g. az login) if unset.",
"isRequired": false,
"isSecret": false
},
{
"name": "AZURE_CLIENT_ID",
"description": "Service principal client ID. Optional; required only when using ClientSecretCredential.",
"isRequired": false,
"isSecret": false
},
{
"name": "AZURE_CLIENT_SECRET",
"description": "Service principal client secret. Optional; required only when using ClientSecretCredential.",
"isRequired": false,
"isSecret": true
},
{
"name": "GOOGLE_CLOUD_PROJECT",
"description": "GCP project ID. Recommended to set explicitly in the MCP client env block — may not be inherited from gcloud shell configuration.",
"isRequired": false,
"isSecret": false
},
{
"name": "GCP_BILLING_TABLE",
"description": "Fully-qualified BigQuery billing export table (project.dataset.table_name). Required for GCP cost queries.",
"isRequired": false,
"isSecret": false
},
{
"name": "GCP_BILLING_ACCOUNT_ID",
"description": "GCP billing account ID (format: XXXXXX-XXXXXX-XXXXXX). Optional; needed only for budget monitoring.",
"isRequired": false,
"isSecret": false
},
{
"name": "GOOGLE_APPLICATION_CREDENTIALS",
"description": "Path to GCP service account JSON key file. Optional; falls back to Application Default Credentials (gcloud auth).",
"isRequired": false,
"isSecret": false
}
]
}
]
}