Skip to main content

Documentation Index

Fetch the complete documentation index at: https://agno-v2-team-approvals.mintlify.app/llms.txt

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

Five context providers come up out of the box: web, workspace (the Scout repo), CRM, knowledge wiki, and voice wiki. Slack, Drive, and MCP servers light up later when you wire credentials.

Prerequisites

1

Clone and configure

git clone https://github.com/agno-agi/scout && cd scout
cp example.env .env
Open .env and set OPENAI_API_KEY. Everything else has sensible defaults.
2

Start Scout

docker compose up -d --build
First run pulls the base image and builds the container. Subsequent starts come up in seconds.
3

Verify it's running

curl http://localhost:8000/health
Expect {"status":"ok"}. Connection refused means the container is still starting. Check docker compose logs -f scout-api and wait for the Agno banner.

Connect to AgentOS UI

Open os.agno.com and log in. Click Add OS, choose Local, enter http://localhost:8000, click Connect. Then ask Scout: “Which contexts are you connected to?” Scout reports back web, workspace, CRM, knowledge, and voice.

What you have now

Five providers active. Each surfaces as query_<id> (and update_<id> where writes are allowed):
ProviderTool(s)Backed by
Webquery_webParallel’s public MCP (keyless). Set PARALLEL_API_KEY to upgrade to the Parallel SDK.
Workspacequery_workspaceThe Scout repo, read-only. Re-point at your own repo by editing SCOUT_FS_ROOT in scout/contexts.py.
CRMquery_crm, update_crmLocal Postgres. Ships with scout_contacts, scout_projects, scout_notes, scout_followups. New scout_* tables on demand.
Knowledge wikiquery_knowledge, update_knowledgeFilesystem at wiki/knowledge/. Swap to a Git repo for durable storage in production.
Voice wikiquery_voiceFilesystem at wiki/voice/. Read-only, code-managed style guide.

Try it

Each prompt routes through a different provider:
“Walk me through your codebase.”query_workspace
“Look up the latest pricing for Anthropic’s models.”query_web
“Save Sarah Chen as a contact, head of platform at Acme.”update_crm
“Track my coffee consumption. First one: flat white, extra shot.”update_crm creates scout_coffee_orders and inserts the row.
“File a runbook for incident response: page on-call first, post status in #incidents, capture timeline as you go.”update_knowledge

Next

Use the knowledge wiki and CRM →