-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlhm.plugin.json
More file actions
200 lines (200 loc) · 5.86 KB
/
Copy pathlhm.plugin.json
File metadata and controls
200 lines (200 loc) · 5.86 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
{
"identifier": "yonro-memory-os-cli",
"name": "XMemo CLI",
"description": "Shared, governed long-term memory for AI agents across tools and sessions via MCP and REST.",
"author": "yonro",
"authorUrl": "https://github.com/yonro",
"homepage": "https://xmemo.dev/product/mcp",
"icon": "https://raw.githubusercontent.com/yonro/memory-os-cli/main/plugins/xmemo/assets/logo.png",
"version": "0.4.345",
"category": "productivity",
"connectionType": "hybrid",
"cloudEndpoint": "https://xmemo.dev/mcp",
"tags": [
"xmemo",
"mcp",
"memory",
"ai-agents",
"knowledge-management",
"streamable-http",
"oauth",
"privacy"
],
"deploymentOptions": [
{
"installationMethod": "npm",
"isRecommended": true,
"description": "Install @xmemo/client and run its dedicated token-free discovery server over stdio.",
"installationDetails": {
"packageName": "@xmemo/client"
},
"connection": {
"type": "stdio",
"command": "xmemo-mcp",
"args": []
},
"systemDependencies": [
{
"name": "nodejs",
"type": "runtime",
"requiredVersion": ">=20.0.0",
"checkCommand": "node --version",
"versionParsingRequired": true,
"installInstructions": {
"macos": "brew install node@20",
"linux_debian": "sudo apt install nodejs npm",
"windows": "Download Node.js 20 or newer from https://nodejs.org/en/download/",
"manual": "Install Node.js 20 or newer from https://nodejs.org/en/download/"
}
}
]
},
{
"installationMethod": "manual",
"isRecommended": false,
"description": "Connect directly to the hosted Streamable HTTP endpoint with MCP OAuth or an XMemo bearer token.",
"connection": {
"type": "http",
"url": "https://xmemo.dev/mcp"
}
}
],
"tools": [
{
"name": "get_mcp_identity",
"description": "Check XMemo connection status and the connected account or agent."
},
{
"name": "remember",
"description": "Save a memory so it can be recalled in future conversations."
},
{
"name": "recall",
"description": "Recall the most relevant saved memories before answering."
},
{
"name": "recall_context",
"description": "Read a multi-memory context pack with explicit item/token budgets; use recall for a lightweight answer or get_project_context for a project snapshot."
},
{
"name": "memory_stats",
"description": "Show aggregate statistics for XMemo memories."
},
{
"name": "update_memory",
"description": "Update the content or metadata of an existing memory."
},
{
"name": "explain_memory",
"description": "Explain why a memory exists or matched a query."
},
{
"name": "restore_memory",
"description": "Restore a previously deleted memory."
},
{
"name": "add_expense",
"description": "Create one XMemo Ledger transaction and backing memory for an expense, income, refund, or transfer."
},
{
"name": "list_ledger_transactions",
"description": "Show XMemo Ledger records."
},
{
"name": "get_monthly_ledger_summary",
"description": "Summarize Ledger totals by month and currency."
},
{
"name": "forget",
"description": "Permanently delete a memory by target."
},
{
"name": "create_memory_todo",
"description": "Create a TODO or action item with an optional due time."
},
{
"name": "list_memory_todos",
"description": "List open or completed TODO and action items."
},
{
"name": "complete_memory_todo",
"description": "Mark a TODO or action item completed."
},
{
"name": "list_memory_versions",
"description": "List available versions for a memory."
},
{
"name": "get_timeline",
"description": "Read authorized timeline events newest first; use recall_context for semantic multi-memory context."
},
{
"name": "record_event",
"description": "Record a significant session event, milestone, or decision."
},
{
"name": "update_state",
"description": "Create or replace scoped working state for resuming a task; use remember for durable facts."
},
{
"name": "get_project_context",
"description": "Read one authorized project's bounded context pack when an exact project_id is known."
}
],
"prompts": [
{
"name": "remember",
"description": "Save a memory to XMemo for future recall across sessions.",
"arguments": [
{
"name": "content",
"description": "The text to remember.",
"required": true,
"type": "string"
},
{
"name": "path",
"description": "Optional category path for the memory.",
"required": false,
"type": "string"
}
]
},
{
"name": "recall",
"description": "Recall relevant memories from XMemo before answering a question.",
"arguments": [
{
"name": "query",
"description": "What to search for in memory.",
"required": true,
"type": "string"
}
]
},
{
"name": "project-context",
"description": "Build a context pack from XMemo for the current project or task.",
"arguments": [
{
"name": "query",
"description": "Describe the project or task context needed.",
"required": true,
"type": "string"
}
]
}
],
"resources": [
{
"uri": "xmemo://docs/getting-started",
"name": "XMemo MCP quick start",
"mimeType": "text/markdown"
},
{
"uri": "xmemo://docs/security",
"name": "XMemo security and privacy",
"mimeType": "text/markdown"
}
]
}