> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anonalabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Integrations

> Every place Anona plugs into a tool or framework you already use.

Anona is reachable three ways: from an agent client over MCP, from Slack, and
from inside an agent framework. All three use the same spaces, the same API
keys and the same scoping rules, so a memory written from one is readable from
the others.

## Agent clients

<Card title="MCP" href="/mcp-integration" horizontal>
  Claude Code, Claude Desktop and Cursor, over local stdio or the remote
  endpoint. API key or OAuth.
</Card>

<Card title="Slack" href="/slack" horizontal>
  Ask in a channel, answered from that channel's space. Read only.
</Card>

## Frameworks

Each of these wraps the same `MemoryBridge`: install the extra, pass a space
and an optional scope, and the framework's own memory hook does the rest.

<Card title="LangChain & LangGraph" href="/integrations/langchain" horizontal>
  `pip install 'anona[langchain]'`
</Card>

<Card title="CrewAI" href="/integrations/crewai" horizontal>
  `pip install 'anona[crewai]'`
</Card>

<Card title="LlamaIndex" href="/integrations/llamaindex" horizontal>
  `pip install 'anona[llamaindex]'`
</Card>

<Card title="Google ADK" href="/integrations/google-adk" horizontal>
  `pip install 'anona[adk]'`
</Card>

<Card title="Microsoft Agent Framework" href="/integrations/microsoft-agent-framework" horizontal>
  `pip install 'anona[agent-framework]'`
</Card>

<Card title="Strands" href="/integrations/strands" horizontal>
  `pip install 'anona[strands]'`
</Card>

<Card title="Runnable examples" href="/integrations/examples" horizontal>
  One script per framework, end to end.
</Card>

## No framework

If none of the above fits, the SDKs and the REST API are the direct path.

<Card title="Python SDK" href="/sdk/python" horizontal>
  `pip install anona`
</Card>

<Card title="TypeScript SDK" href="/sdk/javascript" horizontal>
  `npm install @anona-labs/memory`
</Card>

<Card title="API reference" href="/api-reference/overview" horizontal>
  Record, retrieve, reason, and the drop-in LLM proxy.
</Card>
