-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.json
More file actions
48 lines (48 loc) · 1.4 KB
/
Copy pathserver.json
File metadata and controls
48 lines (48 loc) · 1.4 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.cyntrisec/cyntrisec",
"title": "Cyntrisec CLI (Historical)",
"description": "Historical AWS analysis CLI; not a current Cyntrisec product.",
"repository": {
"url": "https://github.com/cyntrisec/cyntrisec-cli",
"source": "github"
},
"version": "0.1.14",
"packages": [
{
"registryType": "pypi",
"identifier": "cyntrisec",
"version": "0.1.14",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "AWS_PROFILE",
"description": "AWS profile name to use for authentication",
"isRequired": false,
"isSecret": false
},
{
"name": "AWS_DEFAULT_REGION",
"description": "AWS region to use (defaults to profile/env settings)",
"isRequired": false,
"isSecret": false
},
{
"name": "AWS_ACCESS_KEY_ID",
"description": "AWS access key ID (use AWS_PROFILE instead if possible)",
"isRequired": false,
"isSecret": true
},
{
"name": "AWS_SECRET_ACCESS_KEY",
"description": "AWS secret access key (use AWS_PROFILE instead if possible)",
"isRequired": false,
"isSecret": true
}
],
"arguments": ["serve"]
}
]
}