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

# MCP Server

> Connect AI tools to Nozle documentation

Nozle documentation is available as an MCP (Model Context Protocol) server, letting AI coding tools query our docs in real time.

## Connect your AI tools

<Tabs>
  <Tab title="Claude Code">
    ```bash theme={null}
    claude mcp add --transport http nozle https://docs.nozle.app/mcp
    ```
  </Tab>

  <Tab title="Cursor">
    Add to your `.cursor/mcp.json`:

    ```json theme={null}
    {
      "mcpServers": {
        "nozle": {
          "url": "https://docs.nozle.app/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="VS Code">
    Add to `.vscode/mcp.json`:

    ```json theme={null}
    {
      "servers": {
        "nozle": {
          "type": "http",
          "url": "https://docs.nozle.app/mcp"
        }
      }
    }
    ```
  </Tab>
</Tabs>

## Available tools

Once connected, your AI tools can:

* **Search** — Find relevant documentation by keyword or semantic query
* **Read pages** — Navigate and read the full content of any docs page
* **Report issues** — Flag documentation problems directly from your editor

## What this enables

Your AI coding assistant will automatically pull Nozle docs when generating code that uses our SDKs or API. Instead of generic answers, it gives responses grounded in our actual documentation — correct method signatures, current endpoints, and real examples.

## Additional resources

Nozle docs are also available in machine-readable formats:

| Resource        | URL                            | Description                      |
| --------------- | ------------------------------ | -------------------------------- |
| `llms.txt`      | `docs.nozle.app/llms.txt`      | Documentation index for LLMs     |
| `llms-full.txt` | `docs.nozle.app/llms-full.txt` | Full documentation content       |
| Markdown        | Append `.md` to any page URL   | Clean markdown for AI processing |
