# 安装 SuperMemory

- 类型: MCP 工具
- 说明: 帮助智能体记录失败经验、验证教训并检索上下文以持续改进表现
- 仓库: https://github.com/YashvantHange/SuperMemory

## 方式一 · 一键代装（复制提示词让 AI 代劳）

### Claude Code
```
请帮我安装 askskill 上的 "SuperMemory" MCP 服务：
执行：claude mcp add 'io-github-yashvanthange-supermemory' -- npx -y supermemory-agent
```

### Codex
```
请帮我安装 askskill 上的 "SuperMemory" MCP 服务：
在 ~/.codex/config.toml 中添加：
[mcp_servers.io-github-yashvanthange-supermemory]
command = "npx"
args = ["-y","supermemory-agent"]
然后重启 Codex 生效
```

### Cursor
```
请帮我安装 askskill 上的 "SuperMemory" MCP 服务：
在 .cursor/mcp.json 的 "mcpServers" 中添加：
"io-github-yashvanthange-supermemory": { "command": "npx", "args": ["-y","supermemory-agent"] }
然后在 Cursor 设置 > MCP 中启用
```

## 方式二 · 命令行安装（原生命令与配置）

### Claude Code
```bash
claude mcp add --env SUPERMEMORY_STORAGE_PATH=YOUR_VALUE --env UALL_DATA_DIR=YOUR_VALUE --transport stdio io-github-yashvanthange-supermemory -- npx -y supermemory-agent
```
需要环境变量：SUPERMEMORY_STORAGE_PATH, UALL_DATA_DIR

### Codex
```bash
codex mcp add --env SUPERMEMORY_STORAGE_PATH=YOUR_VALUE --env UALL_DATA_DIR=YOUR_VALUE io-github-yashvanthange-supermemory -- npx -y supermemory-agent
```
配置文件 ~/.codex/config.toml：
```toml
[mcp_servers.io-github-yashvanthange-supermemory]
command = "npx"
args = ["-y","supermemory-agent"]

[mcp_servers.io-github-yashvanthange-supermemory.env]
SUPERMEMORY_STORAGE_PATH = "YOUR_VALUE"
UALL_DATA_DIR = "YOUR_VALUE"
```
需要环境变量：SUPERMEMORY_STORAGE_PATH, UALL_DATA_DIR

### Cursor
配置文件 .cursor/mcp.json：
```json
{
  "mcpServers": {
    "io-github-yashvanthange-supermemory": {
      "command": "npx",
      "args": [
        "-y",
        "supermemory-agent"
      ],
      "env": {
        "SUPERMEMORY_STORAGE_PATH": "YOUR_VALUE",
        "UALL_DATA_DIR": "YOUR_VALUE"
      }
    }
  }
}
```
一键安装：cursor://anysphere.cursor-deeplink/mcp/install?name=io-github-yashvanthange-supermemory&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsInN1cGVybWVtb3J5LWFnZW50Il0sImVudiI6eyJTVVBFUk1FTU9SWV9TVE9SQUdFX1BBVEgiOiJZT1VSX1ZBTFVFIiwiVUFMTF9EQVRBX0RJUiI6IllPVVJfVkFMVUUifX0
需要环境变量：SUPERMEMORY_STORAGE_PATH, UALL_DATA_DIR
