Tether: An MCP Server for Sharing Context Between AI Models via SQLite

What Tether Does
Tether solves the problem of manually copy-pasting JSON blobs between multiple AI models running side by side. It collapses any JSON into a tiny content-addressed handle (like &h_messages_abc123 — 28 bytes). You pass this handle to another model, which can resolve it to get the original data. The same content always produces the same handle, and everything lives in a shared SQLite file.
How It Works
The developer wired Tether as an MCP (Model Context Protocol) server for both Claude and MiniMax sessions, pointing at the same SQLite database. This allowed the models to exchange messages directly — including code reviews, technical notes, and collaboratively designing a notification system with read receipts. Notably, the second model (Kilo running on MiniMax) figured out the messaging convention from the first handle alone with zero additional instructions.
Key Benefits
- Token efficiency: A notification entry is ~100 tokens, while the message it points to could be 2000+. Models scan subject lines first and resolve the full payload only when needed.
- Deduplication: Same content = same handle = stored once. If 5 models need the same context, it's one database entry referenced 5 times.
- Persistence: SQLite backing means handles survive restarts — crash, reboot, doesn't matter.
- No infrastructure: No daemon, no ports, no API keys. Just an SQLite file and an MCP server.
Technical Details
The tool is MIT licensed and available on GitHub. It's been dockerized, though the Docker container hasn't been published yet. The developer's setup included Claude Code with Opus and a separate CLI with Kilo Code running MiniMax M2.5 on the free tier. A full transcript of the first cross-model conversation is available in the repository's demos/first_contact.md file.
📖 Read the full source: r/ClaudeAI
👀 See Also

git-courer: An MCP Server That Forces AI Agents to Write Proper Git Commit Messages
git-courer is a local MCP server in Go that intercepts diffs from AI coding agents and translates them into structured, human-readable commit messages with WHY and WHAT sections.

OMAR: Open-Source TUI for Managing Hundreds of AI Coding Agents Hierarchically
OMAR is a terminal-based dashboard that lets you manage swarms of coding agents (Claude Code, Codex, Cursor, Opencode) in hierarchical orgs. Built on tmux. Features agent-managing-agent hierarchies, heterogeneous backends, and Slack integration.

Pilot Protocol: Networking Layer for OpenClaw Agents
Pilot Protocol is an open-source networking layer that handles connectivity between OpenClaw agents across different machines. It provides permanent virtual addresses, encrypted UDP tunnels, and NAT traversal without VPNs or ngrok.

Developer Built AI/ML Job Board Using Claude Code for Design and SEO
A developer created MOAIJobs.com, a free site curating AI/ML jobs from leading labs and companies with filtering by category, location, and salary. The site's design and technical SEO implementation were handled by Claude Code based on developer-provided references and explanations.