-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.json
More file actions
54 lines (54 loc) · 1.51 KB
/
Copy pathserver.json
File metadata and controls
54 lines (54 loc) · 1.51 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.hjqcan/goodmemory",
"description": "Durable user/project memory for MCP clients: recall context and remember selected facts.",
"title": "GoodMemory",
"websiteUrl": "https://github.com/hjqcan/GoodMemory#readme",
"repository": {
"url": "https://github.com/hjqcan/GoodMemory",
"source": "github"
},
"version": "0.6.0",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "goodmemory",
"version": "0.6.0",
"runtimeHint": "npx",
"transport": {
"type": "stdio"
},
"packageArguments": [
{
"type": "positional",
"value": "mcp"
},
{
"type": "positional",
"value": "serve"
},
{
"type": "named",
"name": "--standalone",
"description": "Run the standalone read-only MCP server without an installed host."
},
{
"type": "named",
"name": "--user-id",
"description": "Stable GoodMemory user id that scopes this client's memory.",
"isRequired": true,
"value": "{user_id}",
"variables": {
"user_id": {
"description": "Your stable GoodMemory user id.",
"isRequired": true,
"format": "string"
}
}
}
],
"environmentVariables": []
}
]
}