> ## Documentation Index
> Fetch the complete documentation index at: https://docs.poix.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Claude Code

> Connect Claude Code to the Poix MCP server

Claude Code has native support for remote MCP servers over Streamable HTTP, so connecting Poix is a single command.

<Steps>
  <Step title="Get a Poix Token">
    If you don't already have one, create a `poix-` Token in the [Dashboard](https://app.poix.io/mcp). See [Authentication](/mcp/authentication) for details.
  </Step>

  <Step title="Add the Poix MCP server">
    Run the following in your project (or with `--scope user` to make it available everywhere):

    ```bash theme={null}
    claude mcp add --transport http poix https://mcp.poix.io --header "Authorization: Bearer poix-…"
    ```

    Replace `poix-…` with your actual Token.
  </Step>

  <Step title="Verify the connection">
    ```bash theme={null}
    claude mcp list
    ```

    `poix` should show as connected. You can now ask Claude Code to search YouTube, look up video/channel details, or fetch captions, and it will call the Poix tools automatically.
  </Step>
</Steps>

<Note>
  To remove the server later, run `claude mcp remove poix`.
</Note>
