Skip to main content

Documentation Index

Fetch the complete documentation index at: https://agno-v2-docs-align-with-readme.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

AgentOS is the runtime and control plane layers of an Agno-built agent platform. Together with the Agno SDK, they form the three layers of the platform: SDK to build, Runtime to run, Control Plane to manage.
  • Production API: 50+ ready to use endpoints with SSE-compatible streaming.
  • Data Ownership: Sessions, memory, knowledge, and traces stored in your database.
  • Request Isolation: No state bleed between users, agents, or sessions.
  • Security: JWT-based RBAC with hierarchical scopes.
  • Observability: Traces stored in your database with no third-party egress or vendor lock-in.
  • Governance: Guardrails, human-in-the-loop, and approval flows for full control.
  • Multi-framework: Serve agents built with the Claude Agent SDK, LangGraph and DSPy alongside native Agno agents. See Multi-Framework Support.
Here’s a minimal example of the AgentOS serving an Agent with memory, state and MCP:
agno_assist.py
from agno.agent import Agent
from agno.db.sqlite import SqliteDb
from agno.models.anthropic import Claude
from agno.os import AgentOS
from agno.tools.mcp import MCPTools

agno_assist = Agent(
    name="Agno Assist",
    model=Claude(id="claude-sonnet-4-5"),
    db=SqliteDb(db_file="agno.db"),
    tools=[MCPTools(url="https://docs.agno.com/mcp")],
    add_datetime_to_context=True,
    add_history_to_context=True,
    num_history_runs=3,
    markdown=True,
)

agent_os = AgentOS(agents=[agno_assist])
app = agent_os.get_app()

Architecture

AgentOS has two parts:
  1. Runtime: A FastAPI service that runs agents, teams, and workflows.
  2. Control plane: A UI for managing, monitoring, and debugging your system.
The runtime exposes the APIs that power both the control plane and your AI products. The runtime can serve agents built with the Agno SDK, the Claude Agent SDK, LangGraph, or DSPy. AgentOS Architecture The AgentOS runs as a container in your cloud. The UI connects directly from the browser. No proxies. No data relays. Your data stays completely private.

Private by Design

Most AI tooling stores your data on their servers. You pay retention costs, deal with egress fees, and depend on their security. AgentOS runs entirely in your infrastructure:
  • Your database: Sessions, memory, knowledge, traces. All stored where you control it.
  • Zero transmission: No conversations, logs, or metrics sent to Agno.
  • From browser to runtime: The control plane connects from your browser to the runtime. Agno stores no data except for your runtime endpoint. All data resides in your database.
See AgentOS Security for more details.
AgentOS Security and Privacy Architecture

Next Steps

Run Your First AgentOS

Initialize and serve a basic agent.

Connect AgentOS to UI

Manage AgentOS using a Web UI.

Control Plane

Inspect sessions and debug traces.

Learn More

Learn more about AgentOS