Continuum
Click on "Install 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., "@ContinuumWhat do you remember about our previous discussions?"
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.
Continuum
Continuum gives an MCP-compatible agent persistent memory: working, episodic, and semantic, backed by CockroachDB's distributed SQL and vector indexing. The point isn't just storing memory. It's proving the configuration behind it actually survives losing a whole cloud region, not just claiming it would.
Built for the CockroachDB × AWS "Build with Agentic Memory" Hackathon.
Live demo: https://continuum-mcp.fly.dev — the real MCP server (endpoint at /mcp, an MCP client speaks Streamable HTTP there, not a browsable page), running against the live multi-region cluster. Hosted on Fly.io rather than the originally-targeted AWS Lambda, since real AWS account access for the hackathon never came through in time.
Why
Most agent memory today is either nothing (every session starts blank) or a single vector store with everything dumped in as "semantic." That's not how memory actually works. What happened this turn needs different handling than what happened last week, which needs different handling than a durable fact about a user. And none of it matters if a region outage wipes it out the moment someone actually relies on it.
Continuum splits memory into three tiers with genuinely different access patterns, exposes them as MCP tools any agent can call, and runs on a CockroachDB cluster spread across 3 regions with REGION survival goal configured, the minimum CockroachDB requires to actually survive losing one. See SRS.md FR-3 for why that's demonstrated through configuration and a written explanation rather than a live region kill in the demo video.
Requirements and design rationale: SRS.md.
Related MCP server: agent-memory
Architecture
graph LR
Agent[Agent<br/>Amazon Bedrock Agents] -->|MCP tool calls| MCP[Continuum MCP Server<br/>AWS Lambda]
MCP -->|SQL + vector search| DB[(CockroachDB Cloud<br/>3 regions)]Three memory tiers, one cluster, four MCP tools: store_memory, recall_memory, list_episodes, forget_memory. Details in ARCHITECTURE.md.
Quickstart
git clone https://github.com/mittalpk/Continuum.git
cd Continuum
uv sync
# Point at a running CockroachDB cluster (see DEPLOYMENT.md for a real multi-region
# setup, or a single-node local instance for development, per CONTRIBUTING.md)
export DATABASE_URL="postgresql://root@localhost:26257/continuum?sslmode=disable"
export MCP_CONTINUUM_EMBEDDING_MODEL="amazon.titan-embed-text-v2:0"
cockroach sql --url "$DATABASE_URL" -f infra/sql/schema.sql # applies SRS.md §6's schema
uv run uvicorn continuum.server:app --host 127.0.0.1 --port 8000Point any MCP client (Claude Desktop, the MCP Inspector, or the Bedrock reference agent once deployed) at the running server. docs/api/mcp-tools.md has the full tool reference with examples. src/continuum/agent.py is a local reference-agent harness exercising the same tools end to end without needing a real MCP client; see tests/integration/test_agent.py for it in action.
Documentation
Document | What it covers |
Requirements, acceptance criteria, non-functional targets | |
Component design, data model, request flow, trade-offs | |
Why the load-bearing decisions were made | |
MCP tool reference with examples | |
Provisioning the cluster, Lambda, and reference agent | |
Operating a deployed system: multi-region checks, rollback, incident response | |
Threat model, secrets handling, disclosure policy | |
Test strategy and how to run the suite | |
Dev setup, PR process | |
Community standards | |
Version history |
Status
All four MCP tools (store_memory, recall_memory, list_episodes, forget_memory) are implemented and tested against a live multi-region CockroachDB cluster, along with a local reference-agent harness proving FR-5's cross-session recall and NFR-PORT-01's generic-MCP-client requirement with a real client, not an in-process shortcut. Real Terraform exists for the Lambda deployment; an actual terraform apply and Bedrock Agents registration are pending AWS account access, tracked honestly rather than assumed done. See SRS.md §13 for what's deliberately left out of this version, and SRS.md §14 for the build timeline.
License
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Shared, governed long-term memory for AI agents across tools and sessions via MCP and REST.
An MCP memory server. One memory your agents share — across models, devices and apps.
Persistent memory for AI agents — log and recall conversation context over MCP.
Persistent memory for AI agents with OAuth-backed hosted MCP access.
Related MCP Servers
AlicenseNot gradedqualityAmaintenanceMCP server providing cognitive memory tools (remember, recall, think, etc.) for AI agents, enabling forgetting, consolidation, and contradiction detection.172Apache 2.0- AlicenseNot gradedqualityCmaintenanceMCP server for zero-config, traceable long-term memory using SQLite, enabling agents to store, search, trace, and monitor memory with tools like memory_store, memory_search, and memory_health.MIT
- AlicenseAqualityCmaintenanceMCP server providing persistent memory for AI agents, enabling them to read, write, and query memories across sessions.920MIT
- AlicenseAqualityBmaintenanceMCP server that gives AI agents persistent, tenant-scoped memory with semantic search and consolidation, using CockroachDB vector indexes and Amazon Bedrock embeddings.41MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mittalpk/Continuum'
If you have feedback or need assistance with the MCP directory API, please join our Discord server