MCP Catalogs
Homecontinuum screenshot

continuum

by pouyahasanamreji·24·Score 43

Shared memory + orchestration for coding agents via one MCP server with persistent vector memory.

developer-toolsai-llmknowledge-graph
6
Forks
0
Open issues
this month
Last commit
2d ago
Indexed

Overview

Continuum is an MCP server that provides shared memory and orchestration for multiple coding agents. It creates a centralized knowledge base using SQLite with vector embeddings, allowing different AI clients like Claude Code, Codex, and Cline to share learned experiences and avoid redundant explanations. The server implements a canonical workflow with a 4-phase dispatch protocol (Intake → Research → Verify → Handoff) and maintains a registry of agents to prevent conflicts across git worktrees.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Multiple AI assistants working on the same codebase without redundant context explanations
you:Persistent knowledge storage that survives model resets and client sessions
you:Orchestrating parallel AI agents in isolated worktrees with collision detection
you:What is the difference between fundamental and situational knowledge?
you:Can I use custom embedding models?

When to choose this

Choose Continuum when you need multiple AI agents to collaborate on a long-term project while maintaining consistent knowledge and coordination.

When NOT to choose this

Don't choose Continuum if you're working on short-term, isolated tasks or prefer cloud-based solutions over local-first architectures.

Tools this server exposes

10 tools extracted from the README
  • project_create

    Create a new Continuum project for a repository path

  • plot

    Read the PLOT.md orchestration protocol for a project

  • registry_list

    List active agents with their metadata and reserved paths

  • agent_get

    Get detailed information about a specific agent

  • knowledge_list

    List knowledge entries by kind (fundamental or situational)

  • knowledge_get

    Retrieve the full body of a specific knowledge entry

  • knowledge_search

    Search knowledge base with natural language queries

  • knowledge_create

    Add a new lesson to the knowledge base

  • agent_create

    Create a new agent with reserved paths and implementation details

  • agent_update

    Update an agent's status or information

Comparable tools

agent-mcpswarm-mcpclaude-desktopcursor

Installation

Quick Start with Docker

docker compose -f docker-compose.dev.yml up

Bare Metal Installation

pnpm install
pnpm dev

Claude Desktop Configuration

Add to ~/.claude.json:

{
  "mcpServers": {
    "continuum": {
      "transport": "streamable-http",
      "url": "http://127.0.0.1:7776/mcp"
    }
  }
}

FAQ

What is the difference between fundamental and situational knowledge?
Fundamental knowledge contains project-wide rules loaded on every dispatch, while situational knowledge contains specific insights that are only retrieved when semantically relevant to the current task.
Can I use custom embedding models?
Yes, Continuum supports pluggable embedders including Ollama, Hugging Face TEI, and any OpenAI-compatible service via the EMBEDDER_URL environment variable.

Compare continuum with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.