-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
51 lines (51 loc) · 1.44 KB
/
Copy pathserver.json
File metadata and controls
51 lines (51 loc) · 1.44 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.vighriday/veris",
"description": "Behavioral verification for AI coding agents. TS/JS. 17 MCP tools. Local-first. MIT.",
"repository": {
"url": "https://github.com/vighriday/Veris",
"source": "github"
},
"version": "2.1.8",
"packages": [
{
"registryType": "npm",
"identifier": "veris-core",
"version": "2.1.8",
"transport": {
"type": "stdio"
},
"runtimeArguments": [
{
"type": "positional",
"value": "mcp",
"isRequired": true,
"isRepeated": false
}
],
"environmentVariables": [
{
"name": "VERIS_STATE_DISABLED",
"description": "Set to 1 for zero-retention mode (skip all SQLite writes).",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "VERIS_PLUGINS_DISABLED",
"description": "Set to 1 to skip loading .veris/plugins/*.js.",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "VERIS_CONFIDENCE_THRESHOLD",
"description": "Veris exits with code 2 when overall confidence falls below this number.",
"isRequired": false,
"isSecret": false,
"format": "string"
}
]
}
]
}