-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.94 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.94 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
{
"name": "memcord",
"version": "3.4.0",
"description": "Privacy-first, self-hosted MCP server for organizing chat history, summarizing messages, and searching across past conversations with AI",
"main": "src/memcord/server.py",
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"memory",
"chat-history",
"conversation-memory",
"copilot",
"github-copilot",
"vscode",
"claude",
"ai-memory",
"knowledge-management",
"privacy-first",
"self-hosted",
"search",
"summarization"
],
"repository": {
"type": "git",
"url": "https://github.com/ukkit/memcord.git"
},
"homepage": "https://github.com/ukkit/memcord",
"bugs": {
"url": "https://github.com/ukkit/memcord/issues"
},
"author": {
"name": "MemCord",
"email": "memcord@ultrafastidio.us"
},
"license": "MIT",
"mcp": {
"server": {
"command": "uv",
"args": [
"--directory",
".",
"run",
"memcord"
],
"type": "stdio",
"env": {
"PYTHONPATH": "./src"
}
},
"tools": [
"memcord_name",
"memcord_use",
"memcord_save",
"memcord_save_progress",
"memcord_read",
"memcord_list",
"memcord_search",
"memcord_query",
"memcord_zero",
"memcord_select_entry",
"memcord_merge"
],
"basicTools": 11,
"advancedTools": 19,
"features": [
"Infinite memory across conversations",
"AI-powered auto-summarization",
"Natural language search and queries",
"Intelligent conversation merging",
"Privacy-first local storage",
"Timeline navigation",
"Tag-based organization",
"Multi-format import (PDF, URL, etc)",
"Compression and archival",
"Team memory sharing"
],
"requirements": {
"python": ">=3.10",
"vscode": ">=1.102"
}
},
"engines": {
"python": ">=3.10",
"vscode": "^1.102.0"
}
}