-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathserver.json
More file actions
66 lines (66 loc) · 1.83 KB
/
Copy pathserver.json
File metadata and controls
66 lines (66 loc) · 1.83 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.ebeirne/lians",
"title": "Lians Memory for AI Agents",
"description": "Local-first memory for any AI agent. Remember and recall across sessions through MCP.",
"version": "0.5.0",
"websiteUrl": "https://www.lians.ai",
"repository": {
"url": "https://github.com/Lians-ai/Lians",
"source": "github"
},
"packages": [
{
"registryType": "pypi",
"identifier": "lians-sdk",
"version": "0.5.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": "Optional base URL of a hosted or self-hosted Lians server; omit for local SQLite mode",
"isRequired": false,
"isSecret": false
},
{
"name": "LIANS_API_KEY",
"description": "API key with read and write scopes",
"isRequired": false,
"isSecret": true
},
{
"name": "LIANS_AGENT_ID",
"description": "Agent identifier used as the memory namespace",
"isRequired": false,
"default": "mcp-agent"
},
{
"name": "LIANS_LOCAL_DB",
"description": "Local SQLite path used when LIANS_URL is omitted",
"isRequired": false,
"default": "~/.lians/mcp.db"
},
{
"name": "LIANS_NAMESPACE",
"description": "Local tenant namespace",
"isRequired": false,
"default": "mcp"
}
]
}
]
}