-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.json
More file actions
58 lines (58 loc) · 1.78 KB
/
server.json
File metadata and controls
58 lines (58 loc) · 1.78 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-12-11/server.schema.json",
"name": "io.github.SynapseLayer/synapse-layer",
"title": "Synapse Layer \u2014 Continuous Consciousness Infrastructure",
"description": "Persistent zero-knowledge memory for AI agents. AES-256-GCM encryption, PII redaction.",
"version": "1.1.8",
"websiteUrl": "https://synapselayer.org",
"repository": {
"url": "https://github.com/SynapseLayer/synapse-layer",
"source": "github"
},
"packages": [
{
"registryType": "pypi",
"identifier": "synapse-layer",
"version": "1.1.8",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "SYNAPSE_AGENT_ID",
"description": "Identifier for the agent using the memory layer.",
"isRequired": false,
"isSecret": false,
"default": "default-agent"
},
{
"name": "SYNAPSE_PRIVACY_EPSILON",
"description": "Differential privacy epsilon parameter. Lower = stronger privacy. Range: 0.1\u20132.0.",
"isRequired": false,
"isSecret": false,
"default": "0.5"
},
{
"name": "SYNAPSE_ENCRYPTION_KEY",
"description": "AES-256-GCM encryption key for at-rest memory encryption. Auto-generated if not provided.",
"isRequired": false,
"isSecret": true
},
{
"name": "LOG_LEVEL",
"description": "Logging verbosity: DEBUG, INFO, WARNING, ERROR.",
"isRequired": false,
"isSecret": false,
"default": "INFO"
}
]
}
],
"remotes": [
{
"type": "streamable-http",
"url": "https://forge.synapselayer.org/api/mcp"
}
]
}