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.Documentation Index
Fetch the complete documentation index at: https://agno-v2-rbac-doc-update.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
- Manual
- Agentic
Start Scout
Connect to AgentOS UI
Open os.agno.com and log in. Click Add OS, choose Local, enterhttp://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 asquery_<id> (and update_<id> where writes are allowed):
| Provider | Tool(s) | Backed by |
|---|---|---|
| Web | query_web | Parallel’s public MCP (keyless). Set PARALLEL_API_KEY to upgrade to the Parallel SDK. |
| Workspace | query_workspace | The Scout repo, read-only. Re-point at your own repo by editing SCOUT_FS_ROOT in scout/contexts.py. |
| CRM | query_crm, update_crm | Local Postgres. Ships with scout_contacts, scout_projects, scout_notes, scout_followups. New scout_* tables on demand. |
| Knowledge wiki | query_knowledge, update_knowledge | Filesystem at wiki/knowledge/. Swap to a Git repo for durable storage in production. |
| Voice wiki | query_voice | Filesystem 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_crmcreatesscout_coffee_ordersand inserts the row.
“File a runbook for incident response: page on-call first, post status in #incidents, capture timeline as you go.” → update_knowledge