-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathserver.json
More file actions
67 lines (67 loc) · 1.95 KB
/
server.json
File metadata and controls
67 lines (67 loc) · 1.95 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
64
65
66
67
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.SynapseLayer/synapse-layer",
"title": "Synapse Layer",
"description": "Persistent memory infrastructure for AI agents \u2014 encrypted, governed, and cross-agent. The OAuth for AI Memory.",
"version": "2.3.6",
"websiteUrl": "https://synapselayer.org",
"repository": {
"url": "https://github.com/SynapseLayer/synapse-layer",
"source": "github"
},
"packages": [
{
"registryType": "pypi",
"identifier": "synapse-layer",
"version": "2.4.1",
"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",
"headers": {
"x-connect-token": "{CONNECT_TOKEN}"
}
}
],
"connections": [
{
"type": "http",
"url": "https://forge.synapselayer.org/api/mcp"
}
]
}