经 AI Skill Hub 精选评估,Octopoda-OS 获评「推荐使用」。这款MCP工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.3 分,适合有一定技术背景的用户使用。
Octopoda-OS 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Octopoda-OS 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/RyjoxTechnologies/Octopoda-OS
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"octopoda-os": {
"command": "npx",
"args": ["-y", "octopoda-os"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Octopoda-OS 执行以下任务... Claude: [自动调用 Octopoda-OS MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"octopoda-os": {
"command": "npx",
"args": ["-y", "octopoda-os"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
<p align="center"> <img src="docs/images/octopoda-hero.gif" alt="Octopoda" width="720" /> </p>
<p align="center"> <strong>The open-source memory operating system for AI agents.</strong><br /> Persistent memory, loop detection, audit trails, and live observability — automatic on <code>pip install</code>. </p>
<p align="center"> <a href="https://pypi.org/project/octopoda/"><img src="https://img.shields.io/pypi/v/octopoda?style=flat-square&label=pypi" alt="PyPI" /></a> <a href="https://pypi.org/project/octopoda/"><img src="https://img.shields.io/pypi/dm/octopoda?style=flat-square&color=blue&label=downloads" alt="Downloads" /></a> <a href="https://github.com/RyjoxTechnologies/Octopoda-OS/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/RyjoxTechnologies/Octopoda-OS/ci.yml?branch=main&style=flat-square&label=CI" alt="CI" /></a> <a href="https://github.com/RyjoxTechnologies/Octopoda-OS/actions/workflows/smoke.yml"><img src="https://img.shields.io/github/actions/workflow/status/RyjoxTechnologies/Octopoda-OS/smoke.yml?branch=main&style=flat-square&label=smoke" alt="Smoke" /></a> <a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-blue?style=flat-square" alt="License" /></a> <a href="https://www.python.org/downloads/"><img src="https://img.shields.io/badge/python-3.9+-blue?style=flat-square" alt="Python 3.9+" /></a> <a href="https://github.com/RyjoxTechnologies/Octopoda-OS/stargazers"><img src="https://img.shields.io/github/stars/RyjoxTechnologies/Octopoda-OS?style=flat-square&color=gold" alt="Stars" /></a> <a href="https://oosmetrics.com/repo/RyjoxTechnologies/Octopoda-OS"><img src="https://api.oosmetrics.com/api/v1/badge/achievement/91ba942c-54bf-4c16-b359-f6a11d9d7aab.svg" alt="oosmetrics Top 3 in Observability" /></a> </p>
<p align="center"> <a href="https://octopodas.com"><b>Website</b></a> · <a href="https://octopodas.com/docs"><b>Docs</b></a> · <a href="https://octopodas.com/dashboard"><b>Dashboard</b></a> · <a href="#quick-start"><b>Quick start</b></a> · <a href="#mcp-server"><b>MCP</b></a> </p>
<p align="center"> <img src="docs/images/dashboard-overview.png" alt="Octopoda dashboard — 5 agents, 226 ops, 382 loops caught, $12.45 in wasted tokens detected" width="900" /> </p>
<p align="center"><sub><i>Live overview from a real fleet. Agent health, operations volume, anomaly stream, and dollars saved by catching loops before they ran the bill.</i></sub></p>
---
```
That is the entire setup. Your agent now has persistent memory, loop detection, crash recovery, and an audit trail. No config, no Docker, no Redis, no extra services.
pip install octopoda # Core — everything to get started (Python 3.9+)
pip install octopoda[ai] # + Local embeddings for semantic search
pip install octopoda[server] # + Local dashboard server (Flask)
pip install octopoda[nlp] # + spaCy for knowledge graph extraction
pip install octopoda[mcp] # + MCP server for Claude/Cursor (Python 3.10+)
pip install octopoda[all] # Everything (Python 3.10+)
Python version note: the core package supports Python 3.9 and up. The[mcp]extra requires Python 3.10+ because the upstreammcplibrary does. If you're on 3.9 and want everything except MCP, usepip install octopoda[ai,server,nlp].
Local-mode note: running without an API key (pip install octopodaonly) gives you a fully working local install with SQLite at~/.synrix/data/synrix.db. TheOCTOPODA_API_KEYenvironment variable accepts the sentinelslocal,offline,dev,none, orYOUR_KEY_HEREto explicitly force local mode. Real cloud keys start withsk-octopoda-; anything else is treated as a local sentinel rather than hung on cloud auth.
Updating Claude Code MCP registration: if you change theclaude mcp add octopoda ...env vars (for example, swapping from local to cloud), restart the Claude Code window./mcpreconnect alone won't pick up the new env because the child process inherits Claude Code's cached env at startup.
pip install octopoda
```python from octopoda import AgentRuntime
agent = AgentRuntime("my_chatbot") agent.remember("user_name", "Alice")
| Variable | Default | Description |
|---|---|---|
OCTOPODA_API_KEY | Cloud API key (free at octopodas.com) | |
OCTOPODA_LICENSE_KEY | License key for higher tiers (optional) | |
OCTOPODA_LLM_PROVIDER | none | openai, anthropic, ollama |
OCTOPODA_OPENAI_API_KEY | Your OpenAI key for local fact extraction | |
OCTOPODA_EMBEDDING_MODEL | BAAI/bge-small-en-v1.5 | Local embedding model (33 MB, runs on CPU) |
SYNRIX_DATA_DIR | ~/.synrix/data | Local data directory (where SQLite + embeddings live) |
OCTOPODA_LOCAL_MODE | unset | Set to 1 to force local mode regardless of OCTOPODA_API_KEY |
SYNRIX_HEARTBEAT_INTERVAL_SEC | 3 | Daemon heartbeat polling interval (raise for low-resource boxes) |
SYNRIX_MAX_VERSIONS_PER_RUNTIME_KEY | 10 | Schema-level cap on runtime:* / metrics:* key versions |
Drop into the framework you already use. One line, your agents get persistent memory.
<details> <summary><b>LangChain — drop-in conversation memory</b></summary>
from octopoda import LangChainMemory
memory = LangChainMemory("my-chain")
memory.save_context({"input": "I prefer dark mode"}, {"output": "Got it!"})
variables = memory.load_memory_variables({}) </details>
<details> <summary><b>CrewAI — persistent crew findings and task results</b></summary>
from octopoda import CrewAIMemory
crew = CrewAIMemory("research-crew")
crew.store_finding("researcher", "market_size", {"value": "$4.2B"})
finding = crew.get_finding("market_size") </details>
<details> <summary><b>AutoGen — multi-agent conversation memory</b></summary>
from octopoda import AutoGenMemory
memory = AutoGenMemory("dev-team")
memory.store_message("user_proxy", "assistant", "Research quantum computing")
history = memory.get_conversation_history() </details>
<details> <summary><b>OpenAI Agents SDK — thread and run persistence</b></summary>
from octopoda import OpenAIAgentsMemory
memory = OpenAIAgentsMemory()
memory.store_thread_state("thread_001", {"messages": [...]})
restored = memory.restore_thread("thread_001") </details>
All integrations work locally (no API key) or with cloud sync (set OCTOPODA_API_KEY).
---
| Local | Cloud | |
|---|---|---|
| Setup | pip install octopoda | Sign up at octopodas.com (free) |
| Storage | SQLite on your machine | PostgreSQL + pgvector |
| Dashboard | http://localhost:7842 | octopodas.com/dashboard |
| Account | Not needed | Free, then optional paid tiers |
| Multi-device sync | No | Yes |
| Semantic search | octopoda[ai] extra (33 MB) | Built-in |
| Upgrade path | Set OCTOPODA_API_KEY | Already there |
Start local. Move to cloud when you need sync, team access, or the managed dashboard. Same Python API both ways.
---
该工具使用 NOASSERTION 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
📄 NOASSERTION — 请查阅原始协议条款了解具体使用限制。
AI Skill Hub 点评:Octopoda-OS 的核心功能完整,质量良好。对于Claude Desktop / Claude Code 用户来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | Octopoda-OS |
| 原始描述 | 开源MCP工具:The open-source memory operating system for AI agents. Persistent memory, semant。⭐333 · Python |
| Topics | mcpagent-frameworkai-agentsai-memoryautogencrash-recoverypython |
| GitHub | https://github.com/RyjoxTechnologies/Octopoda-OS |
| License | NOASSERTION |
| 语言 | Python |
收录时间:2026-05-22 · 更新时间:2026-05-22 · License:NOASSERTION · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端