-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
51 lines (51 loc) · 1.61 KB
/
server.json
File metadata and controls
51 lines (51 loc) · 1.61 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.vitas/evidra",
"title": "Evidra",
"description": "Evidra — Flight recorder for AI infrastructure agents",
"version": "0.4.12",
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/vitas/evidra-mcp:0.4.12",
"transport": { "type": "stdio" },
"environmentVariables": [
{
"name": "EVIDRA_ENVIRONMENT",
"description": "Environment label (production, staging, development)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "EVIDRA_EVIDENCE_DIR",
"description": "Directory for evidence JSONL storage",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "EVIDRA_SIGNING_MODE",
"description": "Signing mode: strict (default) or optional (ephemeral local mode)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "EVIDRA_SIGNING_KEY",
"description": "Base64-encoded Ed25519 private key (required for strict mode)",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "EVIDRA_SIGNING_KEY_PATH",
"description": "Path to PEM-encoded Ed25519 private key (required for strict mode if key not inline)",
"isRequired": false,
"format": "string",
"isSecret": false
}
]
}
]
}