TuskPoint Checkpoints

TuskPoint Checkpoints

MCP server for managing verifiable LangGraph agent state on Walrus, enabling exact checkpoint save/load/resume and semantic search via MemWal.

Category
访问服务器

README

TuskPoint — langgraph-checkpoint-walrus

Verifiable LangGraph agent state on Walrus, with semantic recall over checkpoint history via MemWal.

Built in small, testable increments.

What it is

Two layers:

  1. WalrusSaver — a drop-in LangGraph BaseCheckpointSaver. Every checkpoint is serialized with LangGraph's own serde, gzipped, and stored as an immutable Walrus blob (the exact layer). A per-thread JSON manifest maps checkpoint_id -> {blob_id, parent, timestamp, summary}. On every save it also writes a one-sentence natural-language summary to MemWal (the semantic layer), so an agent can later search its own past.

  2. mcp_server — an MCP server exposing six checkpoint tools (save / load / list / resume / diff / search) over stdio. It complements, and does not duplicate, MemWal's own MCP.

Architecture

                      ┌─────────────────────────────────────────┐
   LangGraph agent ──▶│             WalrusSaver                  │
   (put / get_tuple)  │  BaseCheckpointSaver[str]                │
                      │                                          │
                      │  EXACT layer            SEMANTIC layer   │
                      │  ───────────            ──────────────   │
                      │  serde→gzip→blob        build_summary()  │
                      │       │                       │          │
                      └───────┼───────────────────────┼──────────┘
                              ▼                        ▼
                    ┌──────────────────┐     ┌──────────────────┐
                    │  Walrus testnet  │     │      MemWal       │
                    │ publisher PUT /  │     │ remember / recall │
                    │ aggregator GET   │     │ (vector search)   │
                    └──────────────────┘     └──────────────────┘
                              ▲
                              │ latest manifest blob id cached in
                              │ .walrus_threads.json  (only local state)
                              ▼
                      ┌──────────────────┐
                      │  mcp_server      │  6 tools over stdio:
                      │  (FastMCP)       │  save load list resume diff search
                      └──────────────────┘

Exact vs. semantic — why both?

  • Exact lookups are by ID, never fuzzy. checkpoint_load(thread, id) resolves the manifest entry → blob ID → Walrus GET → de-gzip → de-serialize. This is deterministic and content-addressed: the blob you read is byte-for-byte the blob you wrote. This is the part you rewind to.
  • Semantic search is for discovery. checkpoint_search("when did the writer start?") asks MemWal for the nearest summaries. It returns pointers (summaries with thread/checkpoint IDs), which you then load exactly. Vector recall is never the source of truth — it's an index into the exact store.

How this differs from MemWal's own MCP

MemWal ships an MCP for free-form memories (remember / recall / analyze / restore / login / logout). TuskPoint manages durable, exactly-addressable checkpoints — agent state you can resume a graph from. The only overlap, checkpoint_search, is deliberately scoped to our checkpoint summaries, not general memories.

Quick start

python -m pip install -e ".[all]"
cp .env.example .env   # then fill in your keys

All secrets come from environment variables (loaded from .env). See .env.example for the full list. Never commit your real .env — it is git-ignored.

Proofs and demos

Each build step has a runnable proof.

1. Walrus blob round-trip

python scripts/check_walrus.py

Writes a random blob to a testnet publisher, reads it back from an aggregator, and asserts the bytes are identical — printing the blob ID.

2. MemWal remember / recall

python scripts/check_memwal.py

Remembers a sentence, then recalls it semantically and prints the distance.

3–4. Crash / resume demo (the headline)

# In-memory fake backend (single process, interrupt then resume):
python demo/run_demo.py

# REAL Walrus testnet, surviving a genuine process kill:
python demo/run_demo.py --real --part1   # run to interrupt, persist, EXIT
python demo/run_demo.py --real --part2   # FRESH process rehydrates from Walrus

A researcher→writer agent is interrupted before the writer runs. --part2 starts a brand-new process that reads only the manifest blob ID from .walrus_threads.json, pulls the checkpoint back from Walrus, and resumes the writer to completion. That is the "survive a process kill" proof.

5. Semantic self-search

python demo/run_demo.py --semantic

Runs the agent on real Walrus + MemWal, then asks "when did the writer start?" and prints the nearest checkpoint summaries — the agent searching its own history.

MCP server

Six tools over stdio: checkpoint_save, checkpoint_load, checkpoint_list, checkpoint_resume, checkpoint_diff, checkpoint_search.

Run it directly:

python mcp_server/server.py

Register with an MCP client

A ready-to-use .mcp.json is included. For Claude Desktop, add the equivalent to claude_desktop_config.json:

{
  "mcpServers": {
    "tuskpoint-checkpoints": {
      "command": "python",
      "args": ["mcp_server/server.py"],
      "cwd": "C:/Users/User/Documents/tuskpoint",
      "env": {
        "WALRUS_PUBLISHER_URL": "https://publisher.walrus-testnet.walrus.space",
        "WALRUS_AGGREGATOR_URL": "https://aggregator.walrus-testnet.walrus.space",
        "WALRUS_THREADS_CACHE": ".walrus_threads.json"
      }
    }
  }
}

checkpoint_search returns an explanatory message instead of failing if no MemWal credentials are present, so the server runs fine without them.

Tests

python -m pytest -m "not integration"   # 16 fast unit tests, no network
python -m pytest -m integration         # live Walrus round-trip + resume

Project layout

src/langgraph_checkpoint_walrus/
  walrus_client.py   BlobStore protocol, InMemoryWalrusClient, real WalrusClient
  manifest.py        ThreadManifest / CheckpointEntry (id -> blob_id, lineage)
  saver.py           WalrusSaver (BaseCheckpointSaver): gzip envelope per checkpoint
  memwal_layer.py    MemWalLayer: build_summary + summarize_and_remember + search
mcp_server/server.py 6 checkpoint tools over stdio (FastMCP)
demo/                researcher→writer agent + crash/resume/semantic demos
scripts/             check_walrus.py, check_memwal.py (standalone proofs)
tests/               unit (no network) + integration (live Walrus) suites

90-second video demo script

  1. (0:00) Show check_walrus.py — "agent state lands on Walrus, byte-identical round-trip."
  2. (0:15) Run demo/run_demo.py --real --part1 — agent interrupts before the writer, exits.
  3. (0:35) Point at .walrus_threads.json — "only a blob pointer survives locally; the state is on the network."
  4. (0:45) Run --real --part2 in a fresh shell — "new process, resumes from Walrus, writer finishes."
  5. (1:05) Run --semantic — ask "when did the writer start?", show ranked summaries.
  6. (1:20) Show the MCP server tools list — "any MCP agent can save/load/diff/search checkpoints."

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选