agent-recall-mcp 3.3.7 → 3.3.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -133,7 +133,7 @@ Human: "we need SDK, CLI, │
|
|
|
133
133
|
|
|
134
134
|
**MCP** — for AI agents (Claude Code, Cursor, Windsurf, VS Code, Codex):
|
|
135
135
|
```bash
|
|
136
|
-
claude mcp add agent-recall -- npx -y agent-recall-mcp
|
|
136
|
+
claude mcp add --scope user agent-recall -- npx -y agent-recall-mcp
|
|
137
137
|
```
|
|
138
138
|
|
|
139
139
|
**SDK** — for any JS/TS application (LangChain, CrewAI, Vercel AI SDK, custom):
|
|
@@ -176,7 +176,7 @@ A **persistent memory system** that gives AI agents **compounding awareness** ac
|
|
|
176
176
|
|
|
177
177
|
```bash
|
|
178
178
|
# Claude Code
|
|
179
|
-
claude mcp add agent-recall -- npx -y agent-recall-mcp
|
|
179
|
+
claude mcp add --scope user agent-recall -- npx -y agent-recall-mcp
|
|
180
180
|
|
|
181
181
|
# Cursor — .cursor/mcp.json
|
|
182
182
|
{ "mcpServers": { "agent-recall": { "command": "npx", "args": ["-y", "agent-recall-mcp"] } } }
|
|
@@ -664,7 +664,7 @@ curl -o ~/.claude/commands/arstart.md https://raw.githubusercontent.com/Goldentr
|
|
|
664
664
|
|
|
665
665
|
**MCP** — 面向 AI 智能体(Claude Code、Cursor、Windsurf、VS Code、Codex):
|
|
666
666
|
```bash
|
|
667
|
-
claude mcp add agent-recall -- npx -y agent-recall-mcp
|
|
667
|
+
claude mcp add --scope user agent-recall -- npx -y agent-recall-mcp
|
|
668
668
|
```
|
|
669
669
|
|
|
670
670
|
**SDK** — 面向任何 JS/TS 应用(LangChain、CrewAI、Vercel AI SDK、自定义):
|
|
@@ -706,7 +706,7 @@ npx agent-recall-cli palace walk --depth active
|
|
|
706
706
|
|
|
707
707
|
```bash
|
|
708
708
|
# Claude Code
|
|
709
|
-
claude mcp add agent-recall -- npx -y agent-recall-mcp
|
|
709
|
+
claude mcp add --scope user agent-recall -- npx -y agent-recall-mcp
|
|
710
710
|
|
|
711
711
|
# Cursor — .cursor/mcp.json
|
|
712
712
|
{ "mcpServers": { "agent-recall": { "command": "npx", "args": ["-y", "agent-recall-mcp"] } } }
|
|
@@ -932,7 +932,7 @@ L5: 洞察索引 recall_insight 「跨项目的经验」
|
|
|
932
932
|
|
|
933
933
|
| 文档 | 说明 |
|
|
934
934
|
|------|------|
|
|
935
|
-
| [智能距离协议](docs/intelligent-distance-protocol.md) | 基础理论 — 人类与 AI
|
|
935
|
+
| [智能距离协议](docs/intelligent-distance-protocol.md) | 基础理论 — 人类与 AI 之间的差距是结构性的,如何减少两个物种之间的沟通信息损失 |
|
|
936
936
|
| [MCP 适配器规范](docs/mcp-adapter-spec.md) | 基于 AgentRecall 构建适配器的技术规范 |
|
|
937
937
|
| [SDK 设计](docs/sdk-design.md) | SDK 架构设计文档 |
|
|
938
938
|
| [v3.4 升级说明](UPGRADE-v3.4.md) | 周报压缩、宫殿优先冷启动、提升验证 |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-recall-mcp",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.9",
|
|
4
4
|
"description": "Memory Palace MCP server for AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"test": "node --test test/*.test.mjs"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"agent-recall-core": "^3.3.
|
|
14
|
+
"agent-recall-core": "^3.3.9",
|
|
15
15
|
"@modelcontextprotocol/sdk": "^1.28.0",
|
|
16
16
|
"zod": "^3.24.0"
|
|
17
17
|
},
|