-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
47 lines (47 loc) · 1.32 KB
/
server.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.knowledgepa3/gia-mcp-server",
"title": "GIA Governance Intelligence Automation",
"description": "AI governance engine — decision controls, compliance, audit chains, knowledge packs.",
"repository": {
"url": "https://github.com/knowledgepa3/gia-mcp-server",
"source": "github"
},
"version": "0.3.1",
"websiteUrl": "https://gia.aceadvising.com",
"packages": [
{
"registryType": "npm",
"identifier": "gia-mcp-server",
"version": "0.3.0",
"transport": {
"type": "stdio"
},
"environment_variables": [
{
"name": "GIA_API_KEY",
"description": "Your GIA API key (required). Get one at https://gia.aceadvising.com",
"required": true
},
{
"name": "GIA_SERVER_URL",
"description": "Custom GIA server URL (optional, defaults to https://gia.aceadvising.com/mcp)",
"required": false
}
]
}
],
"remotes": [
{
"type": "streamable-http",
"url": "https://gia.aceadvising.com/mcp",
"headers": [
{
"description": "GIA API key for authentication",
"name": "x-api-key",
"required": true
}
]
}
]
}