MCP Catalogs
首页continuum screenshot

continuum

by pouyahasanamreji·24·综合分 43

通过一个MCP服务器为编程代理提供共享内存和编排,具有持久向量记忆功能。

developer-toolsai-llmknowledge-graph
6
Forks
0
活跃 Issue
本月
最近提交
2 天前
收录于

概述

Continuum是一个MCP服务器,为多个编程代理提供共享内存和编排功能。它使用SQLite和向量嵌入创建集中式知识库,让Claude Code、Codex和Cline等不同AI客户端能够共享学习经验,避免重复解释。服务器实现了一个包含四阶段调度协议的规范工作流程(接收→研究→验证→交接),并维护代理注册表以防止git工作树之间的冲突。

试试问 AI

装完之后,这里有 5 个你可以让 AI 做的事:

:多个AI助手在同一代码库上工作,无需重复解释上下文
:持久化知识存储,能够在模型重置和客户端会话后保持记忆
:在隔离的工作树中编排并行AI代理,并进行冲突检测
:基础知识和情境知识有什么区别?
:我可以使用自定义嵌入模型吗?

什么时候选它

当您需要多个AI代理在长期项目中协作并保持一致知识和协调时,选择Continuum。

什么时候不要选它

如果您从事短期、孤立的任务,或者更喜欢云解决方案而非本地优先架构,请不要选择Continuum。

此 server 暴露的工具

从 README 抽取出 10 个工具
  • 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

可对比工具

agent-mcpswarm-mcpclaude-desktopcursor

安装

Docker快速启动

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

裸机安装

pnpm install
pnpm dev

Claude Desktop配置

添加到~/.claude.json

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

FAQ

基础知识和情境知识有什么区别?
基础知识包含项目范围的规则,在每次调度时都会加载,而情境知识包含特定洞察,只有当与当前任务语义相关时才会被检索。
我可以使用自定义嵌入模型吗?
是的,Continuum支持可插拔的嵌入器,包括Ollama、Hugging Face TEI和任何通过EMBEDDER_URL环境变量提供的OpenAI兼容服务。

continuum 对比

GitHub →

最后更新于 · 由 README + GitHub 公开数据自动生成。