> ## 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 프라이버시를 위한 AI 도구: 문서 검색, 마크다운 내보내기, MCP.

## 문서를 위한

* **Docs AI 검색.** 검색 창에서 AI로 문서를 검색하세요.
* **마크다운 내보내기.** 원시 마크다운을 위해 페이지 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>
