Corvid
Free, no-signup persistent memory for AI agents. One click mints a private memory space; the returned token is the credential. Agents store durable notes and get them back later via semantic recall (embeddings-based, finds by meaning not just keywords). Remote streamable-HTTP MCP — no install, no repo, works from any MCP client.
How to connect
https://corvid.perch-app.workers.dev/mcp
tools/list returns the expected tools before relying on them in production.Tools
(4)-
rememberStore a durable memory (a fact, preference, decision, or note) so it persists across sessions. Call this whenever the user tells you something worth remembering long-term.
-
recallSemantic search over your stored memories — finds relevant notes by meaning, not just keywords (e.g. a query about "deployment" surfaces a memory that says "ships on Cloudflare Workers"). Call this at the start of a task, or whenever you might have prior context about the user, project, or topic.
-
list_recentList the most recently stored/updated memories in this space.
-
forgetDelete a memory by its id (from a previous recall/list result).