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

# Docs MCP

> Connect AI development tools to the Aion documentation.

The Aion documentation is available through a hosted Model Context Protocol server and LLM text
files. Use these endpoints to give AI coding tools access to Aion SDK, A2A protocol, and
framework-adapter documentation.

## Aion Documentation MCP

Use this endpoint for the public Aion documentation MCP server:

```text theme={null}
https://docs.aion.to/mcp
```

The endpoint is public and does not require a separate Aion API token.

## Cursor

Add the server to your MCP configuration:

```json theme={null}
{
  "mcpServers": {
    "Aion Docs": {
      "url": "https://docs.aion.to/mcp"
    }
  }
}
```

After connecting, ask your AI tool to search the Aion docs before answering Aion SDK, A2A protocol,
or framework-adapter questions.

## VS Code

Create or update `.vscode/mcp.json`:

```json theme={null}
{
  "servers": {
    "Aion Docs": {
      "type": "http",
      "url": "https://docs.aion.to/mcp"
    }
  }
}
```

## LLM Text Files

The documentation portal also publishes text files for AI tools:

```text theme={null}
https://docs.aion.to/llms.txt
https://docs.aion.to/llms-full.txt
```

Use `llms.txt` when a tool wants a concise docs index. Use `llms-full.txt` when a tool needs the
full public documentation corpus as plain text.

Compatible well-known paths are available too:

```text theme={null}
https://docs.aion.to/.well-known/llms.txt
https://docs.aion.to/.well-known/llms-full.txt
```
