Claw Memory Bridge
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Claw Memory Bridgestore a note: decided to use microservices for the new project"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Claw Memory Bridge
Cross-agent shared memory bridge for MCP. Connects memory across QClaw, Claude Code, and Codex via MCP tools.
跨 Agent 共享记忆桥 — 通过 MCP 工具打通 QClaw、Claude Code、Codex 的记忆,让多个 AI agent 共享笔记与结论。
Features
存储与检索跨 agent 的笔记、决策、结论
按 agent 归档(
claude-code/codex/qclaw/user)全文搜索(SQLite FTS5,支持中文)
可选 TencentDB 集成(当存在
~/.openclaw/state/memory-tdai/时自动读取)
Related MCP server: Project Memory MCP Server
MCP Tools
Tool | Description |
| 存一条记忆(agent + topic + content) |
| 全文搜索记忆(含 TencentDB 记忆库) |
| 查看最近记忆 |
| 获取完整上下文:近期 + 相关 + TencentDB |
| 查看各 Agent 记忆量统计 |
Install
git clone https://github.com/ncepuee/claw-memory-bridge.git
cd claw-memory-bridge
npm installRequires Node.js >= 22 (uses built-in node:sqlite).
Configure
Claude Code (stdio)
claude mcp add claw-memory-bridge --scope user -- node /path/to/claw-memory-bridge/server.jsClaude Code Plugin (Marketplace, recommended)
claude plugin marketplace add https://github.com/ncepuee/claw-memory-bridge
claude plugin install claw-memory-bridge@claw-memory-bridgePlugin install auto-runs npm install for dependencies. Don't enable both stdio and plugin at the same time (same MCP name).
Codex
codex mcp add claw-memory-bridge -- node /path/to/claw-memory-bridge/server.jsClaude Desktop / other MCP clients
{
"mcpServers": {
"claw-memory-bridge": {
"command": "node",
"args": ["/path/to/claw-memory-bridge/server.js"]
}
}
}Data
Local SQLite:
~/.claw-memory-bridge/shared.dbOptional TencentDB:
~/.openclaw/state/memory-tdai/(auto-detected; skipped if absent)
Usage
Agents call memory_context at the start of a task to pull recent + relevant context, and memory_store at the end to persist key conclusions.
memory_store({
agent: "claude-code", // codex / qclaw / user
topic: "decision", // project / decision / conclusion / note
content: "我们在 XXX 项目上决定用 YYY 方案,因为 ZZZ",
source: "/path/to/file",
tags: "project=XXX,framework=YYY"
})License
MIT © ncepuee
This server cannot be deployed
Maintenance
Related MCP Connectors
- TaprootOAuthcom.taproothq
Persistent memory layer for AI tools. Save and recall notes across Claude and other MCP clients.
MCP-native notes and memory for ChatGPT, Claude, and other AI tools.
Persistent AI memory shared across Claude, ChatGPT, coding agents, and compatible MCP clients.
- MemocoreOAuthai.memocore
Shared memory for all your AI agents, your whole team and every MCP client — save, search, recall.
Related MCP Servers
- AlicenseNot gradedqualityAmaintenanceProvides AI agents with persistent, local, and shareable project memory by storing decisions and code context in a searchable SQLite index, supporting keyword and semantic search via MCP.3MIT
- FlicenseNot gradedqualityBmaintenanceProvides persistent, searchable memory for MCP-compatible AI coding tools, allowing notes added from one tool to be retrieved from another.-

hive-memoryofficial
AlicenseNot gradedqualityBmaintenanceMCP server for personal and shared memory with full-text search (SQLite FTS5) and outcome tracking, compatible with any MCP agent like Claude Code, Cursor, and Codex CLI.6 npmMIT- AlicenseNot gradedqualityAmaintenanceProvides shared long-term memory for AI coding agents via MCP, allowing tools like Claude Code and Codex to store and retrieve distilled facts, notes, and conversation history to persist context across sessions.16 npm4MIT