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

# Use With AI Tools

> Give Claude, Cursor, or VS Code these docs so your AI assistant writes working Orbbit API calls.

You don't have to read these docs yourself. Point your AI coding assistant at them and ask it to build what you need — it will look up the right endpoints, parameters, and fields as it goes.

There are three ways to give it the docs, from most to least capable.

## Connect the docs to your assistant

The docs have their own connector, which lets an AI assistant search and read every page on demand. It uses MCP (Model Context Protocol), the standard way AI tools plug into outside sources.

Connector address: `https://docs.orbbit.co/mcp`

<Tabs>
  <Tab title="Claude Code">
    ```bash theme={null}
    claude mcp add --transport http orbbit-docs https://docs.orbbit.co/mcp
    ```
  </Tab>

  <Tab title="Cursor">
    Add this to `.cursor/mcp.json` in your project:

    ```json theme={null}
    {
      "mcpServers": {
        "orbbit-docs": { "url": "https://docs.orbbit.co/mcp" }
      }
    }
    ```
  </Tab>

  <Tab title="VS Code">
    Add this to `.vscode/mcp.json` in your project:

    ```json theme={null}
    {
      "servers": {
        "orbbit-docs": { "type": "http", "url": "https://docs.orbbit.co/mcp" }
      }
    }
    ```
  </Tab>
</Tabs>

You can also open the menu at the top of any page and choose your tool to connect it in one click.

## Give it the whole site as text

If your tool doesn't support connectors, give it the site index instead. It's a plain-text list of every page, written for AI tools to read.

* Index of every page: `https://docs.orbbit.co/llms.txt`
* Every page in one file: `https://docs.orbbit.co/llms-full.txt`

## Copy one page

To hand over a single page, open the menu at the top of that page and choose **Copy page**. It copies the page as plain text, ready to paste into any chat.

## Starter prompt

Paste this into your assistant after connecting the docs. Replace the last line with what you want to build.

```text theme={null}
You are helping me call Orbbit's Data API.
- Read the Orbbit docs (connected as "orbbit-docs", or at https://docs.orbbit.co/llms.txt) before writing any code.
- The base address is https://api.orbbit.co and every path starts with /v1.
- Send my key as "Authorization: Bearer $ORBBIT_API_KEY". Never put the key in code.
- Each endpoint needs its own scope on the key; if a call returns 403, tell me which scope to add.
- Only use endpoints, parameters, and fields that appear in the docs.

Task: pull the last 90 days of daily butter prices and save them as a CSV.
```

<Note>
  Your assistant still needs your API key to make real calls. Create one under **API Keys** in the Orbbit console — see [Authentication](/authentication).
</Note>
