-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
63 lines (63 loc) · 1.84 KB
/
Copy pathserver.json
File metadata and controls
63 lines (63 loc) · 1.84 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
59
60
61
62
63
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.I4cTime/q-ring",
"title": "q-ring",
"description": "Quantum-inspired keyring for AI coding agents with superposition, entanglement, and tunneling.",
"websiteUrl": "https://qring.i4c.studio",
"icons": [
{
"src": "https://qring.i4c.studio/assets/icon-192.png",
"mimeType": "image/png",
"sizes": [
"192x192"
]
},
{
"src": "https://qring.i4c.studio/assets/icon-512.png",
"mimeType": "image/png",
"sizes": [
"512x512"
]
}
],
"repository": {
"url": "https://github.com/I4cTime/q-ring",
"source": "github"
},
"version": "0.16.1",
"packages": [
{
"registryType": "npm",
"identifier": "@i4ctime/q-ring",
"version": "0.16.1",
"runtimeHint": "npx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "QRING_BACKEND",
"description": "Secret storage backend. Defaults to the OS keychain; set to \"file\" for headless hosts with no Secret Service (CI, containers).",
"isRequired": false,
"default": "keyring",
"choices": [
"keyring",
"file"
]
},
{
"name": "QRING_FILE_PASSPHRASE",
"description": "Passphrase for the encrypted file backend (AES-256-GCM). Required only when QRING_BACKEND=file — without it the file backend fails closed.",
"isRequired": false,
"isSecret": true
},
{
"name": "QRING_FILE_BACKEND_PATH",
"description": "Custom path for the encrypted file store (default: ~/.config/q-ring/file-backend.enc).",
"isRequired": false,
"format": "filepath"
}
]
}
]
}