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

# Công cụ AI

> Các công cụ AI dành cho Helius Privacy: tìm kiếm tài liệu, xuất markdown và MCP.

## Dành cho tài liệu

* **Tìm kiếm tài liệu bằng AI.** Tìm kiếm tài liệu bằng AI trong thanh tìm kiếm.
* **Xuất markdown.** Thêm `.md` vào cuối URL của bất kỳ trang nào để lấy markdown thô.

## MCP

Model Context Protocol (MCP) là một tiêu chuẩn mở để kết nối các ứng dụng AI với nguồn dữ liệu và công cụ. Máy chủ DeepWiki MCP cung cấp quyền truy cập vào kho lưu trữ Zolana. Máy chủ MCP của tài liệu Helius tìm kiếm trong bộ tài liệu này.

### Cài đặt

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

    Tạo một lệnh để truy vấn DeepWiki. Sao chép đoạn mã này:

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

### Công cụ DeepWiki MCP

* **read\_wiki\_structure.** Liệt kê các chủ đề tài liệu cho một kho lưu trữ GitHub.

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

* **read\_wiki\_contents.** Xem tài liệu về một kho lưu trữ GitHub.

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

* **ask\_question.** Đặt câu hỏi về kho lưu trữ GitHub và nhận câu trả lời dựa trên ngữ cảnh.

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

<Info>
  Bạn có thể chỉ định bất kỳ kho lưu trữ GitHub công khai nào đã được DeepWiki lập chỉ mục. Tìm hiểu thêm trong [tài liệu DeepWiki MCP](https://docs.devin.ai/work-with-devin/deepwiki-mcp).

  Nếu chưa cài đặt MCP, hãy sử dụng [AskDevin](https://deepwiki.com/helius-labs/zolana) trong trình duyệt.
</Info>

## Không tìm thấy nội dung bạn đang tìm kiếm?

<Callout type="info">
  Hãy liên hệ với chúng tôi! [Telegram](https://t.me/tilo_light) | [Email](mailto:sales@helius.xyz) | [Liên hệ](https://www.helius.dev/contact)
</Callout>
