AI Skill Hub 强烈推荐:连续体 是一款优质的MCP工具。AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
连续体 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
连续体 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/shyftlabs/continuum
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"---": {
"command": "npx",
"args": ["-y", "continuum"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 连续体 执行以下任务... Claude: [自动调用 连续体 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"___": {
"command": "npx",
"args": ["-y", "continuum"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<picture> <source media="(prefers-color-scheme: dark)" srcset="docs/assets/continuum-logo-dark.png" /> <img src="docs/assets/continuum-logo.png" alt="Continuum" width="460" /> </picture>
Build, run, and deploy reliable AI agents at enterprise scale — multi-LLM routing, persistent memory, MCP-native tools, durable workflows, and full observability, out of the box.
<br />
📖 Documentation · ⚡ Quick start · ⚙️ Configuration · 🧩 Components · 🧪 Examples · 🤝 Contributing
</div>
---
Continuum is a production-grade Python framework for building, orchestrating, and shipping autonomous AI agents at enterprise scale. It unifies a clean, typed agent core with cost-aware multi-model inference, stateful long- and short-term memory, open standards-based tool calling, durable execution, and end-to-end observability — all behind one small, composable, type-safe API.
Requirements: Python 3.13+ and Docker (for Redis · Milvus/Qdrant · Langfuse).
git clone https://github.com/shyftlabs/continuum.git
cd continuum
python3.13 -m venv .venv && source .venv/bin/activate
pip install -e .
cp .env.template .env # add your provider key(s) — see Configuration below
docker compose up -d # Redis · Milvus/Qdrant · Langfuse
Your first agent:
import asyncio
from orchestrator.agent import BaseAgent, AgentRunner
async def main():
agent = BaseAgent(
name="hello-agent",
instructions="You are a friendly assistant.",
model="gpt-4o-mini",
)
runner = AgentRunner()
response = await runner.run(agent, "Hi!")
print(response.content)
asyncio.run(main())
AgentRunner.run() returns an AgentResponse with content, structured_output, usage, tool_calls, run_artifacts, latency_ms, and the full handoff chain. See the docs for streaming, tools/MCP, memory, handoffs, and workflows.
Runnable demos live under playground/:
gateway-local-shop — an MCP server + agent + chat UI for a pet-shop assistant (end-to-end: server → agent → UI).gateway-multi-agent-shop — a multi-agent workflow variant with routing and handoffs.frontend/ — the demo web UIs (assortment, commerce-chat).Continuum is configured through environment variables (copy .env.template → .env). Set keys only for the providers and components you use — everything else has sensible defaults. The most common settings:
| Variable | Description | Example |
|---|---|---|
OPENAI_API_KEY / ANTHROPIC_API_KEY / GEMINI_API_KEY | Provider API keys — set the one(s) you use | sk-… |
DEFAULT_LLM_MODEL | Default model (provider/model, or bare name for OpenAI) | gemini/gemini-2.5-flash |
FALLBACK_LLM_MODEL | Model used if the default fails | gpt-4o-mini |
LLM_ENABLE_FALLBACK | Automatically fall back on provider errors | true |
SMART_LAYER_ENABLED | Enable cost-aware tier routing (Smart Inference) | true |
| Variable | Description | Example |
|---|---|---|
MEMORY_ENABLED | Enable mem0-backed long-term memory | true |
VECTOR_STORE_PROVIDER | Vector store backend | qdrant / milvus |
EMBEDDER_PROVIDER / EMBEDDER_MODEL | Embedding provider & model | openai / text-embedding-3-small |
MEMORY_ISOLATION | Scope of memory isolation | user / agent / run / shared |
| Variable | Description | Example |
|---|---|---|
SESSION_ENABLED | Enable Redis-backed conversation sessions | true |
SESSION_REDIS_HOST / SESSION_REDIS_PORT | Redis connection | localhost / 6380 |
SESSION_TTL_SECONDS | Session lifetime | 172800 |
| Variable | Description | Example |
|---|---|---|
LANGFUSE_ENABLED | Enable tracing | true |
LANGFUSE_PUBLIC_KEY / LANGFUSE_SECRET_KEY | Langfuse credentials | pk-… / sk-… |
LANGFUSE_HOST | Langfuse endpoint | http://localhost:3000 |
| Variable | Description | Example |
|---|---|---|
TEMPORAL_ENABLED | Enable durable workflow orchestration | false |
TEMPORAL_HOST | Temporal frontend | localhost:7233 |
Optional extras:pip install -e ".[temporal]"for Temporal,".[eval]"for evaluation,".[embeddings]"for local embeddings. See.env.templatefor the complete, annotated reference.
| Component | What it does |
|---|---|
| **Agents** | BaseAgent + AgentRunner — config, hooks, structured outputs, ReAct |
| **Workflows** | Nine multi-agent patterns for chaining, branching, looping, and self-improvement |
| **Smart Inference** | Request classifier + cost-aware model routing with fallback |
| **Memory** | mem0 + Qdrant/Milvus (long-term) · Redis (sessions) · multi-tenant scopes |
| **Tools / MCP** | MCP servers over Stdio/SSE/StreamableHTTP, tool filtering, widget artifacts |
| **Temporal** | Durable, restart-safe workflows with human-in-the-loop gates |
| **Observability** | Langfuse traces, metrics, @observe decorators |
| **Evaluation** | Golden datasets + DeepEval / RAGAS metrics |
高质量的开源MCP工具,具有较强的扩展性
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
总体来看,连续体 是一款质量优秀的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | continuum |
| 原始描述 | 开源MCP工具:Continuum — the agent runtime by ShyftLabs. Build, orchestrate, ship.。⭐14 · Python |
| Topics | agent-frameworkai-agentsai-orchestration |
| GitHub | https://github.com/shyftlabs/continuum |
| License | Apache-2.0 |
| 语言 | Python |
收录时间:2026-05-29 · 更新时间:2026-05-30 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端