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

# AI tools

> AI tools for Helius Privacy: docs search, markdown export, and MCP.

## For Docs

* **Docs AI Search.** Search documentation with AI in the search bar.
* **Markdown export.** Append `.md` to any page URL for raw markdown.

## MCP

The Model Context Protocol (MCP) is an open standard to connect AI apps to data sources and tools. The DeepWiki MCP server provides access to the Zolana repository. The Helius docs MCP server searches this documentation.

### Installation

<Tabs>
  <Tab title="Claude Code">
    ```bash theme={"system"}
    claude mcp add -s user -t http deepwiki https://mcp.deepwiki.com/mcp
    claude mcp add -s user -t http helius-docs https://www.helius.dev/docs/mcp
    ```

    Create a command that queries DeepWiki. Copy this snippet:

    ```markdown theme={"system"}
    ---
    argument-hint: <question>
    description: Query the Zolana repository via DeepWiki MCP for precise technical answers
    allowed-tools: mcp__deepwiki__*
    ---

    # /ask-deepwiki

    Answer: $ARGUMENTS

    Use DeepWiki MCP to provide precise technical answers.

    ## Step 1: Identify Repository Scope

    1. State understanding and plan.
    2. If the question is vague, ask what component, problem, and level of detail are needed.
    3. Repository mapping:
       - Helius Privacy – Solana Rings: `helius-labs/zolana`
       - Solana fundamentals: `solana-labs/solana`
       - Anchor framework: `solana-foundation/anchor`
    4. Refine the question to exact names: `createZolanaClient`, `Private Solana Token Account`, `getEncryptedUtxosByTags`.

    ## Step 2: Query DeepWiki

    For the identified repository, call in sequence:

    1. `mcp__deepwiki__read_wiki_structure("repo-owner/repo-name")`
    2. `mcp__deepwiki__read_wiki_contents("repo-owner/repo-name")`
    3. `mcp__deepwiki__ask_question("repo-owner/repo-name", refined_question)`

    ## Step 3: Format the Response

    Direct answer, then implementations, then code with `file:line` from DeepWiki.
    ```
  </Tab>

  <Tab title="Codex">
    ```bash theme={"system"}
    codex mcp add helius-docs -- npx -y mcp-remote@latest https://www.helius.dev/docs/mcp
    codex mcp add deepwiki -- npx -y mcp-remote@latest https://mcp.deepwiki.com/mcp
    ```
  </Tab>

  <Tab title="Cursor">
    ```json theme={"system"}
    {
      "mcpServers": {
        "deepwiki": {
          "serverUrl": "https://mcp.deepwiki.com/sse"
        },
        "helius-docs": {
          "command": "npx",
          "args": ["-y", "mcp-remote@latest", "https://www.helius.dev/docs/mcp"]
        }
      }
    }
    ```
  </Tab>
</Tabs>

### DeepWiki MCP Tools

* **read\_wiki\_structure.** List documentation topics for a GitHub repository.

```bash theme={"system"}
mcp__deepwiki__read_wiki_structure("helius-labs/zolana")
```

* **read\_wiki\_contents.** View documentation about a GitHub repository.

```bash theme={"system"}
mcp__deepwiki__read_wiki_contents("helius-labs/zolana")
```

* **ask\_question.** Ask a question about the GitHub repository and get a context-grounded response.

```bash theme={"system"}
mcp__deepwiki__ask_question("helius-labs/zolana", "your question")
```

<Info>
  You can specify any public GitHub repo that is indexed by DeepWiki. Learn more in the [DeepWiki MCP docs](https://docs.devin.ai/work-with-devin/deepwiki-mcp).

  If you do not have the MCP installed, use [AskDevin](https://deepwiki.com/helius-labs/zolana) in the browser.
</Info>

## Didn't find what you were looking for?

<Callout type="info">
  Reach out! [Telegram](https://t.me/tilo_light) | [E-Mail](mailto:sales@helius.xyz) | [Contact](https://www.helius.dev/contact)
</Callout>
