
continuum
by pouyahasanamreji·★ 24·综合分 43
通过一个MCP服务器为编程代理提供共享内存和编排,具有持久向量记忆功能。
概述
Continuum是一个MCP服务器,为多个编程代理提供共享内存和编排功能。它使用SQLite和向量嵌入创建集中式知识库,让Claude Code、Codex和Cline等不同AI客户端能够共享学习经验,避免重复解释。服务器实现了一个包含四阶段调度协议的规范工作流程(接收→研究→验证→交接),并维护代理注册表以防止git工作树之间的冲突。
试试问 AI
装完之后,这里有 5 个你可以让 AI 做的事:
什么时候选它
当您需要多个AI代理在长期项目中协作并保持一致知识和协调时,选择Continuum。
什么时候不要选它
如果您从事短期、孤立的任务,或者更喜欢云解决方案而非本地优先架构,请不要选择Continuum。
此 server 暴露的工具
从 README 抽取出 10 个工具project_createCreate a new Continuum project for a repository path
plotRead the PLOT.md orchestration protocol for a project
registry_listList active agents with their metadata and reserved paths
agent_getGet detailed information about a specific agent
knowledge_listList knowledge entries by kind (fundamental or situational)
knowledge_getRetrieve the full body of a specific knowledge entry
knowledge_searchSearch knowledge base with natural language queries
knowledge_createAdd a new lesson to the knowledge base
agent_createCreate a new agent with reserved paths and implementation details
agent_updateUpdate an agent's status or information
可对比工具
安装
Docker快速启动
docker compose -f docker-compose.dev.yml up裸机安装
pnpm install
pnpm devClaude 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 对比
最后更新于 · 由 README + GitHub 公开数据自动生成。