forked from Lians-ai/Lians
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
54 lines (54 loc) · 1.46 KB
/
Copy pathserver.json
File metadata and controls
54 lines (54 loc) · 1.46 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.ebeirne/lians",
"title": "Lians \u2014 Financial-Grade Agent Memory",
"description": "Bitemporal memory for AI agents. SEC 17a-4 audit chain, GDPR crypto-shred, information barriers.",
"version": "0.4.0",
"websiteUrl": "https://www.lians.ai",
"repository": {
"url": "https://github.com/ebeirne/Lians2",
"source": "github"
},
"packages": [
{
"registryType": "pypi",
"identifier": "lians-sdk",
"version": "0.4.0",
"runtimeHint": "uvx",
"runtimeArguments": [
{
"type": "named",
"name": "--from",
"value": "lians-sdk[mcp]"
},
{
"type": "positional",
"value": "lians-mcp"
}
],
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "LIANS_URL",
"description": "Base URL of your Lians server (self-hosted or cloud)",
"isRequired": true,
"isSecret": false
},
{
"name": "LIANS_API_KEY",
"description": "API key with read and write scopes",
"isRequired": true,
"isSecret": true
},
{
"name": "LIANS_AGENT_ID",
"description": "Agent identifier used as the memory namespace",
"isRequired": false,
"default": "mcp-agent"
}
]
}
]
}