Crow: Open-Source MCP Platform Adds Persistent Memory and P2P Sharing to LLM Frontends

✍️ OpenClawRadar📅 Published: March 8, 2026🔗 Source
Crow: Open-Source MCP Platform Adds Persistent Memory and P2P Sharing to LLM Frontends
Ad

What Crow Does

Crow is a self-hosted MCP (Model Context Protocol) platform that adds three core capabilities to LLM frontends: persistent memory with full-text search, structured research tools with citation management, and encrypted peer-to-peer data sharing. All data lives locally in a SQLite database by default with no cloud requirement.

Architecture Components

The platform consists of three MCP servers:

  • Memory server — SQLite-backed persistent memory with FTS5 full-text search. Stores, recalls, searches, and categorizes data that survives across sessions and works across any MCP-compatible frontend.
  • Research server — Project management with auto-APA citations, source verification, notes, and bibliography export. Uses a foreign-keyed relational schema (projects → sources → notes).
  • Sharing server — Peer-to-peer data sharing using Hyperswarm (DHT discovery + NAT holepunching), Hypercore (append-only replicated feeds), and Nostr (NIP-44 encrypted messaging). No central server or accounts required. Uses Ed25519 + secp256k1 identity with invite-code-based contact exchange.

An HTTP gateway (Express) wraps all three servers with Streamable HTTP + SSE transports and OAuth 2.1 for remote access.

Local-First Design

  • Data lives in a local SQLite file (data/crow.db)
  • No cloud dependency by default
  • Optional Turso support for cloud sync (set TURSO_DATABASE_URL + TURSO_AUTH_TOKEN)
  • No telemetry, no accounts, no phone-home
  • P2P sharing is end-to-end encrypted — data never touches a central server
Ad

Compatibility and Integrations

Works with any MCP-compatible client including Claude Desktop, ChatGPT, Cursor, Windsurf, Cline, Claude Code, OpenClaw, and others. If your local LLM setup supports MCP (or you can point it at the HTTP gateway), it works.

Bundles 15+ integration configs for external services: Gmail, GitHub, Slack, Discord, Notion, Trello, arXiv, Zotero, Brave Search, etc. — all routed through the self-hosted gateway.

Technical Stack

  • Node.js (ESM), @modelcontextprotocol/sdk
  • @libsql/client (SQLite/Turso), FTS5 virtual tables with trigger-based sync
  • hyperswarm + hypercore (P2P discovery and data replication)
  • nostr-tools (NIP-44 encrypted messaging, NIP-59 gift wraps)
  • @noble/hashes, @noble/ed25519, @noble/secp256k1 (crypto primitives)
  • zod (schema validation)

Setup

git clone https://github.com/kh0pper/crow.git
cd crow
npm run setup # install deps + init SQLite

Servers start via stdio transport (configured in .mcp.json) or HTTP gateway (npm run gateway). There's also a one-click cloud deploy to Render + Turso if you want remote access (both have free tiers).

Links and Licensing

  • GitHub: https://github.com/kh0pper/crow
  • Docs: https://kh0pper.github.io/crow/
  • Getting Started: https://kh0pper.github.io/crow/getting-started/
  • Developer Program: https://kh0pper.github.io/crow/developers/

MIT licensed. Contributions welcome — there's a developer program with scaffolding CLI, templates, and docs if you want to add MCP tools or integrations.

📖 Read the full source: r/LocalLLaMA

Ad

👀 See Also

Jentic Mini: Self-Hosted API and Action Execution Layer for OpenClaw
Tools

Jentic Mini: Self-Hosted API and Action Execution Layer for OpenClaw

Jentic Mini is a self-hosted API and action execution layer that sits between AI agents and external APIs, storing credentials in an encrypted vault and providing scoped toolkits with individually revocable keys. It automatically imports 10,000+ OpenAPI specs and Arazzo workflow sources when credentials are added.

OpenClawRadar
JavaClaw Beta: Java-Based AI Assistant Built on Spring AI and JobRunr
Tools

JavaClaw Beta: Java-Based AI Assistant Built on Spring AI and JobRunr

JobRunr team released JavaClaw beta, a Java version of OpenClaw that runs locally with multi-channel support, LLM choice, and background job processing via JobRunr. Built with Spring Boot 4, Spring AI, and Spring Modulith.

OpenClawRadar
LumaBrowser: Electron Browser Offloads DOM Parsing to Local LLMs for AI Agents
Tools

LumaBrowser: Electron Browser Offloads DOM Parsing to Local LLMs for AI Agents

LumaBrowser is an Electron browser that offloads DOM parsing to local LLMs via OpenAI-compatible endpoints, helping autonomous agents avoid processing raw HTML. It uses models like Qwen 2.5 variants to identify UI elements and returns CSS selectors.

OpenClawRadar
Godmode Plugin Adds Autonomous Iteration Loop to Claude Code and Other AI Coding Agents
Tools

Godmode Plugin Adds Autonomous Iteration Loop to Claude Code and Other AI Coding Agents

Godmode is an open-source plugin that adds an autonomous measure-modify-verify loop to Claude Code, with parallel agents, failure memory, and 126 skills including optimization, security audits, and TDD. It works with Cursor, Codex, Gemini CLI, and OpenCode.

OpenClawRadar