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

# Quickstart

> Get started with Helius by creating a free account and making your first API call in seconds.

## Make your first API call

<Steps titleSize="h3">
  <Step title="Create your free Helius account">
    Sign up at the [Helius Dashboard](https://dashboard.helius.dev/signup). The free tier is plenty for prototyping.
  </Step>

  <Step title="Send your first request">
    Open the [**Get started**](https://dashboard.helius.dev/get-started) tab in your dashboard, select `getBalance` method and click **Send request**.

    <img src="https://mintcdn.com/helius/vdiC_WpsL8f7g0-1/images/dashboard-get-started.png?fit=max&auto=format&n=vdiC_WpsL8f7g0-1&q=85&s=99c62f3d31a7d89e2d4599626badcc26" alt="Helius dashboard Get started section: click Send request" width="1874" height="1194" data-path="images/dashboard-get-started.png" />
  </Step>

  <Step title="Success!">
    You just queried `getBalance` method to get the balance of the wallet address. You should see a response like this:

    ```json theme={"system"}
    {
      "jsonrpc": "2.0",
      "result": {
        "context": {
          "slot": 434696579,
          "apiVersion": "3.1.9"
        },
        "value": 1266028802962
      },
      "id": 1
    }
    ```

    Try other methods like `getTransactionsForAddress` to get the transaction history or `getAccountInfo` to get the account details.
  </Step>
</Steps>

## Next steps

You have data flowing. Pick your next move.

<CardGroup cols={2}>
  <Card title="Connect your AI coding tool" icon="robot" href="#connect-your-ai-coding-tool">
    Add the Helius MCP server so your AI assistant builds and debugs with live Solana data.
  </Card>

  <Card title="Send your first transaction" icon="paper-plane" href="/docs/sending-transactions/overview">
    Land a transaction on-chain with priority fees and direct routing to leaders.
  </Card>

  <Card title="Stream live data" icon="bolt" href="/docs/data-streaming/quickstart">
    Subscribe to real-time on-chain updates over gRPC or enhanced WebSockets.
  </Card>

  <Card title="Build your first app" icon="rocket" href="#build-your-first-app">
    Follow a self-contained track with copy-pasteable code you can run in minutes.
  </Card>
</CardGroup>

## Connect your AI coding tool

Connect the **[Helius MCP server](/docs/agents/mcp)** to your AI tool so it can build and debug with live Solana data (balances, asset metadata, parsed transactions, webhooks, and streaming) instead of guessing. Works with Claude Code, Claude Desktop, Cursor, VS Code, Windsurf, Codex, and any MCP-compatible tool.

<Tabs>
  <Tab title="Claude Code">
    Run the following command:

    ```bash theme={"system"}
    claude mcp add helius npx helius-mcp@latest
    ```

    Or add to your project's `.mcp.json`:

    ```json theme={"system"}
    {
      "mcpServers": {
        "helius": {
          "command": "npx",
          "args": ["helius-mcp@latest"]
        }
      }
    }
    ```

    Verify with:

    ```bash theme={"system"}
    claude mcp list
    ```

    <Tip>
      Want skills + MCP in one step? Install the [Helius plugin](/docs/agents/claude-code-plugin) instead. Run these as two separate commands:

      ```
      /plugin marketplace add helius-labs/core-ai
      ```

      ```
      /plugin install helius@helius-labs
      ```
    </Tip>
  </Tab>

  <Tab title="Claude Desktop">
    Open **Settings > Developer > Edit Config** and add the server:

    ```json theme={"system"}
    {
      "mcpServers": {
        "helius": {
          "command": "npx",
          "args": ["helius-mcp@latest"]
        }
      }
    }
    ```

    Restart Claude Desktop to apply.
  </Tab>

  <Tab title="Cursor">
    Open the command palette (`Cmd/Ctrl + Shift + P`), search for **MCP: Add Server**, and enter:

    * **Name:** `helius`
    * **Command:** `npx helius-mcp@latest`

    Or add to your project's `.cursor/mcp.json`:

    ```json theme={"system"}
    {
      "mcpServers": {
        "helius": {
          "command": "npx",
          "args": ["helius-mcp@latest"]
        }
      }
    }
    ```
  </Tab>

  <Tab title="VS Code">
    Create a `.vscode/mcp.json` file in your project root:

    ```json theme={"system"}
    {
      "servers": {
        "helius": {
          "command": "npx",
          "args": ["helius-mcp@latest"]
        }
      }
    }
    ```

    Requires the [GitHub Copilot](https://marketplace.visualstudio.com/items?itemName=GitHub.copilot) extension with MCP support enabled.
  </Tab>

  <Tab title="Windsurf">
    Open the command palette (`Cmd/Ctrl + Shift + P`), search for **Configure MCP Servers**, and add:

    ```json theme={"system"}
    {
      "mcpServers": {
        "helius": {
          "command": "npx",
          "args": ["helius-mcp@latest"]
        }
      }
    }
    ```
  </Tab>

  <Tab title="Codex">
    Run the following command:

    ```bash theme={"system"}
    codex mcp add helius -- npx helius-mcp@latest
    ```

    Or add to your `~/.codex/config.toml` (or `.codex/config.toml` for project-scoped):

    ```toml theme={"system"}
    [mcp_servers.helius]
    command = "npx"
    args = ["helius-mcp@latest"]
    ```

    Verify with:

    ```bash theme={"system"}
    codex mcp list
    ```
  </Tab>
</Tabs>

## Build your first app

Each track is self-contained, with copy-pasteable code you can run in minutes.

<CardGroup cols={2}>
  <Card title="Build a portfolio tracker" icon="wallet" href="/docs/quickstart/portfolio-tracker">
    **Mainnet.** Tokens, NFTs, and SOL via DAS, history, and a live WebSocket feed.
  </Card>

  <Card title="Deploy your own program" icon="rocket" href="/docs/quickstart/deploy-program">
    **Devnet.** Deploy a sample program through Helius RPC and invoke it with `sendTransaction`.
  </Card>
</CardGroup>

## Explore the platform

<CardGroup cols={2}>
  <Card title="Build with AI agents" icon="robot" href="/docs/agents/overview">
    Connect the Helius MCP server and SDKs so your AI assistant builds on Solana with live data.
  </Card>

  <Card title="API Reference" icon="code" href="/docs/api-reference">
    Browse every Helius endpoint: RPC, DAS, enhanced transactions, webhooks, and streaming.
  </Card>

  <Card title="Digital Asset Standard (DAS)" icon="images" href="/docs/api-reference/das/getassetsbyowner">
    Query tokens, NFTs, and compressed NFTs by owner, collection, or trait.
  </Card>

  <Card title="Real-Time Data Streaming" icon="bolt" href="/docs/data-streaming/quickstart">
    Stream live blockchain data with sub-second latency over gRPC or enhanced WebSockets.
  </Card>
</CardGroup>
