> ## 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ツール

> Helius PrivacyのためのAIツール：ドキュメント検索、Markdownエクスポート、MCP。

## ドキュメントについて

* **Docs AI検索。** 検索バーでAIを使用してドキュメントを検索します。
* **Markdownエクスポート。** 生のMarkdownを取得するには、ページURLに`.md`を追加します。

## MCP

モデルコンテキストプロトコル（MCP）は、AIアプリをデータソースやツールに接続するためのオープン標準です。DeepWiki MCPサーバーはZolanaリポジトリへのアクセスを提供します。HeliusドキュメントMCPサーバーはこのドキュメントを検索します。

### インストール

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

    DeepWikiをクエリするコマンドを作成します。このスニペットをコピーしてください。

    ```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ツール

* **read\_wiki\_structure。** GitHubリポジトリのドキュメントトピックを一覧表示します。

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

* **read\_wiki\_contents。** GitHubリポジトリに関するドキュメントを表示します。

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

* **ask\_question。** GitHubリポジトリについて質問し、コンテキストに基づいた回答を得ます。

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

<Info>
  DeepWikiでインデックスされた任意のパブリックGitHubリポジトリを指定できます。詳細は[DeepWiki MCPドキュメント](https://docs.devin.ai/work-with-devin/deepwiki-mcp)をご覧ください。

  MCPがインストールされていない場合は、ブラウザで[AskDevin](https://deepwiki.com/helius-labs/zolana)を使用してください。
</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>
