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

# Use with AI

> Give a coding agent or assistant direct access to these docs.

These docs are published in two forms an agent can read: an MCP server and plain-text exports. Both are read-only and need no API key.

## MCP server

The server at `https://docs.flowsign.app/mcp` exposes three tools: search the docs, read any page, and send feedback about a page. Connect it once and your agent can look up endpoints, webhook payloads and error codes without you pasting them in.

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

    Run `claude mcp list` to confirm it connected.
  </Tab>

  <Tab title="Cursor">
    <Steps>
      <Step title="Open the MCP settings">
        Cursor Settings, then **MCP**, then **Add new global MCP server**.
      </Step>

      <Step title="Add the server">
        ```json theme={null}
        {
          "mcpServers": {
            "flowsign-docs": {
              "url": "https://docs.flowsign.app/mcp"
            }
          }
        }
        ```
      </Step>
    </Steps>
  </Tab>

  <Tab title="Claude">
    <Steps>
      <Step title="Add a custom connector">
        In Claude, open **Settings**, then **Connectors**, and choose **Add custom connector**.
      </Step>

      <Step title="Enter the details">
        Name it `FlowSign docs` and set the URL to `https://docs.flowsign.app/mcp`.
      </Step>

      <Step title="Enable it in a chat">
        Open the tools menu in a conversation and switch the connector on.
      </Step>
    </Steps>
  </Tab>

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

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

## Plain-text exports

For agents that fetch pages rather than call tools:

| URL                                       | Contents                                                       |
| ----------------------------------------- | -------------------------------------------------------------- |
| `https://docs.flowsign.app/llms.txt`      | An index of every page with a one-line description and a link. |
| `https://docs.flowsign.app/llms-full.txt` | The whole site in one Markdown file.                           |

Any page is also available as Markdown by adding `.md` to its URL, for example `https://docs.flowsign.app/api-reference/pagination.md`.

<Note>
  The MCP server and the text exports read documentation only. Neither calls the FlowSign API on your behalf, so an agent connected this way cannot send packages or look at your workspace. To let an agent act on FlowSign, use the [REST API](/developers) with an API key.
</Note>
