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

# Getting Started with MCP

> Connect Flowla to your AI assistant in minutes.

## Supported clients

Flowla MCP works with any MCP-compatible client. The server URL is:

```
https://mcp.flowla.com/mcp
```

The server uses OAuth 2.0 — your client will open a browser window to
authorise Flowla on the first connection.

<CardGroup cols={2}>
  <Card title="Desktop & CLI" icon="desktop">
    **Claude Desktop**, **Cursor**, **Windsurf**, **Gemini CLI** and other
    desktop or CLI clients authenticate via a local callback. See the
    Claude Desktop section below for a one-line installer. **Claude Code**
    users can install the plugin directly — see below.
  </Card>

  <Card title="Web UI" icon="globe">
    **Claude Web** (claude.ai) authenticates via
    `https://claude.ai/api/mcp/auth_callback`. No installer needed — paste
    the server URL directly into your Claude Web settings.
  </Card>
</CardGroup>

<Note>
  Need to connect a different client? [Contact us](mailto:tech@flowla.com)
  and we will add the required callback URI.
</Note>

## Claude Desktop

Run the following command in your terminal to install and configure the
Flowla MCP server for Claude Desktop automatically:

<Tabs>
  <Tab title="Mac / Linux">
    ```bash theme={null}
    curl -fsSL https://app.flowla.com/mcp/install.sh | bash
    ```
  </Tab>

  <Tab title="Windows (PowerShell)">
    ```powershell theme={null}
    iwr -useb https://app.flowla.com/mcp/install.ps1 | iex
    ```
  </Tab>
</Tabs>

The installer will:

1. Check for Node.js and install it automatically if missing
2. Write the Flowla MCP server configuration to Claude's settings file
3. Back up your existing Claude config before making any changes

### Verify the installation

After restarting Claude Desktop, go to **Settings → Developer**. Flowla
should appear in the list of connected MCP servers.

## Claude Code

[Claude Code](https://claude.ai/code) is Anthropic's CLI for Claude. Install the
Flowla plugin with two commands:

```bash theme={null}
claude plugin marketplace add flowlacom/claude-plugin
claude plugin install flowla
```

On first use, Claude will open a browser window to authorise your Flowla account.

## How to open your terminal

<Tabs>
  <Tab title="Mac">
    **Option 1 — Spotlight**

    Press **⌘ Command + Space**, type `Terminal`, then press **Return**.

    **Option 2 — Finder**

    Open **Finder → Applications → Utilities → Terminal**.

    **Option 3 — Launchpad**

    Open Launchpad, search for `Terminal`, and click it.
  </Tab>

  <Tab title="Windows">
    **Option 1 — Start menu**

    Press the **Windows** key, type `cmd` or `PowerShell`, then press **Enter**.

    **Option 2 — Run dialog**

    Press **Windows + R**, type `cmd`, then click **OK**.

    **Option 3 — Right-click shortcut**

    Hold **Shift** and right-click any folder in File Explorer, then select
    **Open PowerShell window here** or **Open in Terminal**.

    <Note>
      Use PowerShell for the Windows installer command above. Git Bash or WSL
      also work if you prefer the bash version.
    </Note>
  </Tab>
</Tabs>

## Next steps

<CardGroup cols={2}>
  <Card title="MCP Overview" icon="book-open" href="/mcp/overview">
    Learn how the MCP server works and what it connects to.
  </Card>

  <Card title="Available Tools" icon="wrench" href="/mcp/tools">
    Browse the full list of tools Claude can call.
  </Card>
</CardGroup>
