> ## 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="Codex">
    ```bash theme={null}
    codex mcp add 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">
    Where your workspace allows Developer mode and custom connectors, go to
    Settings → Apps & Connectors → 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."

## Workflow skills

The MCP server answers questions about Sail. To give your agent step-by-step
workflows on top of it, such as migrating an existing app to Sail or building
an observable agent, install the skills from the
[AI Quickstart](/ai-quickstart).
