-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathserver.json
More file actions
58 lines (58 loc) · 1.79 KB
/
server.json
File metadata and controls
58 lines (58 loc) · 1.79 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-09-29/server.schema.json",
"name": "io.github.gitguardian/ggmcp",
"description": "GitGuardian MCP server that enables AI agents to scan projects for secrets using GitGuardian's API with 500+ secret detectors, manage security incidents, and create honeytokens",
"repository": {
"url": "https://github.com/GitGuardian/ggmcp",
"source": "github"
},
"version": "0.5.0",
"packages": [
{
"registryType": "pypi",
"identifier": "ggmcp",
"version": "0.5.0",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "GitGuardian instance URL (defaults to https://dashboard.gitguardian.com for US SaaS)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "GITGUARDIAN_URL"
},
{
"description": "OAuth client ID for custom OAuth applications",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "GITGUARDIAN_CLIENT_ID"
},
{
"description": "OAuth scopes to request (auto-detected by default)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "GITGUARDIAN_SCOPES"
},
{
"description": "Name for the OAuth token",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "GITGUARDIAN_TOKEN_NAME"
},
{
"description": "Token lifetime in days (default: 30)",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "GITGUARDIAN_TOKEN_LIFETIME"
}
]
}
]
}