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

# Use Agno with Coding Agents

> Give your coding agent access to Agno documentation.

There are two ways to give your coding agent access to the Agno documentation.

## Option 1: Add the docs as an MCP server

Add [https://docs.agno.com/mcp](https://docs.agno.com/mcp) as an MCP server in your coding agent.

This works with any MCP-aware client: Claude Code, Cursor, Codex, and others.

The agent gets live access to the docs directly. **This is the recommended approach.**

### Example: Claude Code

Add the MCP server with the CLI:

```bash theme={null}
claude mcp add --transport http agno-docs https://docs.agno.com/mcp
```

Or commit a `.mcp.json` to your repo, so anyone who clones it gets the docs wired in automatically:

```json .mcp.json theme={null}
{
  "mcpServers": {
    "agno-docs": {
      "type": "http",
      "url": "https://docs.agno.com/mcp"
    }
  }
}
```

Then your coding agent can search, read pages, and pull code samples on demand.

## Option 2: Index the docs

Add `https://docs.agno.com/llms-full.txt` as an indexed doc source in your coding agent.

Your coding agent reads it like any other doc reference.

| Tool         | Where to add it                                                        |
| ------------ | ---------------------------------------------------------------------- |
| **Cursor**   | Settings → Indexing & Docs → Add `https://docs.agno.com/llms-full.txt` |
| **VS Code**  | Add the URL as a doc source via your AI extension's settings.          |
| **Windsurf** | Add it to your indexed sources in the Cascade settings.                |

Re-index periodically as the docs change.

## Next steps

| Task                    | Guide                                      |
| ----------------------- | ------------------------------------------ |
| Build an agent          | [First Agent](/first-agent)                |
| Build an agent platform | [Agent Platform](/agent-platform/overview) |
