> ## 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.

# Alat AI

> Alat AI untuk Helius Privacy: pencarian dokumentasi, ekspor markdown, dan MCP.

## Untuk Dokumentasi

* **Pencarian Dokumentasi dengan AI.** Cari dokumentasi dengan AI melalui bilah pencarian.
* **Ekspor markdown.** Tambahkan `.md` ke URL halaman mana pun untuk mendapatkan markdown mentah.

## MCP

Model Context Protocol (MCP) adalah standar terbuka untuk menghubungkan aplikasi AI dengan sumber data dan alat. Server MCP DeepWiki menyediakan akses ke repositori Zolana. Server MCP dokumentasi Helius mencari dokumentasi ini.

### Instalasi

<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
    ```

    Buat perintah yang mengajukan kueri ke DeepWiki. Salin cuplikan ini:

    ```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>

### Alat MCP DeepWiki

* **read\_wiki\_structure.** Cantumkan topik dokumentasi untuk repositori GitHub.

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

* **read\_wiki\_contents.** Lihat dokumentasi tentang repositori GitHub.

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

* **ask\_question.** Ajukan pertanyaan tentang repositori GitHub dan dapatkan respons yang didasarkan pada konteks.

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

<Info>
  Anda dapat menentukan repositori GitHub publik apa pun yang diindeks oleh DeepWiki. Pelajari selengkapnya di [dokumentasi MCP DeepWiki](https://docs.devin.ai/work-with-devin/deepwiki-mcp).

  Jika MCP belum terinstal, gunakan [AskDevin](https://deepwiki.com/helius-labs/zolana) di peramban.
</Info>

## Tidak menemukan yang Anda cari?

<Callout type="info">
  Hubungi kami! [Telegram](https://t.me/tilo_light) | [Email](mailto:sales@helius.xyz) | [Kontak](https://www.helius.dev/contact)
</Callout>
