经 AI Skill Hub 精选评估,memex MCP工具 获评「强烈推荐」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 8.2 分,适合有一定技术背景的用户使用。
基于Zettelkasten卡片盒笔记法的AI编码助手持久化记忆工具。为Claude Code和Cursor等AI编码工具提供长期记忆能力,帮助开发者构建知识库,实现智能代码协作和上下文管理。
memex MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
基于Zettelkasten卡片盒笔记法的AI编码助手持久化记忆工具。为Claude Code和Cursor等AI编码工具提供长期记忆能力,帮助开发者构建知识库,实现智能代码协作和上下文管理。
memex MCP工具 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/iamtouchskyer/memex
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"memex-mcp--": {
"command": "npx",
"args": ["-y", "memex"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 memex MCP工具 执行以下任务... Claude: [自动调用 memex MCP工具 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"memex_mcp__": {
"command": "npx",
"args": ["-y", "memex"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
| 平台 | 集成方式 | 体验 |
|---|---|---|
| **Claude Code** | Plugin(hooks + skills) | 最佳——自动回顾、斜杠命令、SessionStart hook |
| **VS Code / Copilot** | MCP Server | 10 个 MCP 工具,零配置 |
| **Cursor** | MCP Server | 10 个 MCP 工具,零配置 |
| **Codex** | MCP Server | 10 个 MCP 工具,零配置 |
| **Windsurf** | MCP Server | 10 个 MCP 工具,零配置 |
| **Pi** | Extension(自定义工具 + hooks) | 8 个工具,自动回顾 hook,斜杠命令 |
| **任何 MCP 客户端** | MCP Server | 10 个 MCP 工具,零配置 |
所有平台共享同一个 ~/.memex/cards/ 目录。在 Claude Code 中写的卡片,在 Cursor、Codex 或其他客户端中即刻可用。
npm install -g @touchskyer/memexStep 1: Add memex to your editor
| Platform | Command |
|---|---|
| **VS Code / Copilot** | Search "memex" in [VS Code Extensions](https://marketplace.visualstudio.com/items?itemName=touchskyer.memex-mcp) — install and done, no extra setup |
| **Claude Code** | /plugin marketplace add iamtouchskyer/memex then /plugin install memex@memex |
| **Claude Code (MCP fallback)** | npm install -g @touchskyer/memex && memex mcp-config --claude-code |
| **Cursor** | First npm install -g @touchskyer/memex, then [one-click install](cursor://anysphere.cursor-deeplink/mcp/install?name=memex&config=eyJjb21tYW5kIjoibWVtZXgiLCJhcmdzIjpbIm1jcCJdfQ==) |
| **Codex** | npm install -g @touchskyer/memex && codex mcp add memex -- memex mcp |
| **Pi** | npm install -g @touchskyer/memex && pi install npm:@touchskyer/memex |
| **Windsurf / others** | npm install -g @touchskyer/memex, then add MCP server: command memex, args ["mcp"] |
Note: If you use Claude Code inside VS Code, follow the Claude Code row — not "VS Code / Copilot". The VS Code extension serves GitHub Copilot only; Claude Code has its own plugin system.
That's it — no extra setup needed. The MCP tool descriptions tell your agent when to recall and retro.
第一步:添加 memex 到编辑器
| 平台 | 命令 |
|---|---|
| **VS Code / Copilot** | 在 [VS Code 扩展商店](https://marketplace.visualstudio.com/items?itemName=touchskyer.memex-mcp) 搜索 "memex"——安装即用,无需其他配置 |
| **Claude Code** | /plugin marketplace add iamtouchskyer/memex,然后 /plugin install memex@memex |
| **Claude Code(MCP 备选)** | npm install -g @touchskyer/memex && memex mcp-config --claude-code |
| **Cursor** | 先 npm install -g @touchskyer/memex,然后 [一键安装](cursor://anysphere.cursor-deeplink/mcp/install?name=memex&config=eyJjb21tYW5kIjoibWVtZXgiLCJhcmdzIjpbIm1jcCJdfQ==) |
| **Codex** | npm install -g @touchskyer/memex && codex mcp add memex -- memex mcp |
| **Pi** | npm install -g @touchskyer/memex && pi install npm:@touchskyer/memex |
| **Windsurf / 其他** | npm install -g @touchskyer/memex,然后添加 MCP server:命令 memex,参数 ["mcp"] |
注意: 如果你在 VS Code 里使用 Claude Code,请按照 Claude Code 那一行操作,而非"VS Code / Copilot"。VS Code 扩展仅服务于 GitHub Copilot;Claude Code 有自己的 plugin 系统。
安装完成,无需额外配置。MCP 工具描述会自动告诉 agent 何时 recall 和 retro。
---
Optional settings go in ~/.memex/.memexrc (JSON):
{
"nestedSlugs": true,
"searchDirs": ["shared"],
"experimental": {
"agenticMemory": true
}
}
| Key | Type | Default | Description |
|---|---|---|---|
nestedSlugs | boolean | false | Allow / in slugs for hierarchical card paths |
searchDirs | string[] | — | Extra directories to search with --all (in addition to the built-in cards/ store) |
experimental.agenticMemory | boolean | false | Enable A-MEM-inspired agentic memory workflow (see below) |
When experimental.agenticMemory is true, agents gain access to a structured memory skill that guides them through: observe → draft atomic card → enrich metadata → retrieve candidates → decide (create/update/skip) → preview → write → verify.
This produces higher-quality cards with agent-proposed [[wikilinks]] (links are suggested after candidate retrieval and agent review, never added from keyword or embedding similarity alone) and metadata enrichment, compared to the default recall/retro workflow. The feature is default-off and does not change any existing behavior when disabled.
See skills/memex-agentic-memory/SKILL.md for the full skill specification and docs/ARCHITECTURE.md for config details.
---
memex search [query] # search cards, or list all
memex read <slug> # read a card
memex write <slug> # write a card (stdin)
memex links [slug] # link graph stats
memex archive <slug> # archive a card
memex serve # visual timeline UI
memex sync # sync via git
memex mcp # start MCP server (stdio)
创新的记忆架构设计,解决AI编码助手的上下文遗忘问题。Zettelkasten方法论应用恰当,代码质量良好,维护活跃。生态整合力强。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:memex MCP工具 的核心功能完整,质量优秀。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | memex |
| 原始描述 | 开源MCP工具:Zettelkasten-based persistent memory for AI coding agents. Works with Claude Cod。⭐201 · TypeScript |
| Topics | 持久化记忆ZettelkastenAI编码助手MCP工具上下文管理 |
| GitHub | https://github.com/iamtouchskyer/memex |
| License | MIT |
| 语言 | TypeScript |
收录时间:2026-05-16 · 更新时间:2026-05-19 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端