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

# Connect the Docs MCP server

> Connect your agents to Sail's documentation over MCP.

## Install

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

    Or add it to `.mcp.json` in your project:

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

  <Tab title="Cursor">
    [Install in Cursor](https://cursor.com/en/install-mcp?name=sail-docs\&config=eyJ1cmwiOiJodHRwczovL2RvY3Muc2FpbHJlc2VhcmNoLmNvbS9tY3AifQ%3D%3D)
    (one click), or add it to `.cursor/mcp.json`:

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

  <Tab title="VS Code">
    Add it to `.vscode/mcp.json`:

    ```json theme={null}
    {
      "servers": {
        "sail-docs": {
          "type": "http",
          "url": "https://docs.sailresearch.com/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="Claude Desktop">
    Settings → Connectors → Add custom connector, then paste
    `https://docs.sailresearch.com/mcp`.
  </Tab>

  <Tab title="ChatGPT">
    Settings → Apps & Connectors → turn on Developer mode → Add new connector,
    then paste `https://docs.sailresearch.com/mcp`.
  </Tab>

  <Tab title="Other clients">
    Any MCP client that supports streamable HTTP works. Point it at
    `https://docs.sailresearch.com/mcp`.
  </Tab>
</Tabs>

## Try it

Once connected, ask your agent things like:

* "Which Sail models support tool calling, and what do they cost?"
* "What completion window should I use for an overnight batch job?"
* "Set up a Sailbox for my agent and exec a command in it."

## Skills

Install the `sailresearch` skill
with the [skills CLI](https://github.com/vercel-labs/skills):

```bash theme={null}
npx skills add https://docs.sailresearch.com
```
