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

# Flowstep MCP — Claude Desktop

> Conectează Flowstep la Claude Desktop folosind transportul MCP HTTP Streamable.

## Configurare

Editează `claude_desktop_config.json`. Locația fișierului depinde de sistemul de operare:

* **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
* **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`

<Tabs>
  <Tab title="HTTP nativ (Claude Desktop v0.9+)">
    ```json theme={"system"}
    {
      "mcpServers": {
        "flowstep": {
          "type": "http",
          "url": "https://api.flowstep.ai/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="mcp-remote (versiuni mai vechi)">
    Necesită Node.js instalat.

    ```json theme={"system"}
    {
      "mcpServers": {
        "flowstep": {
          "command": "npx",
          "args": ["-y", "mcp-remote", "https://api.flowstep.ai/mcp"]
        }
      }
    }
    ```
  </Tab>
</Tabs>

Restartează Claude Desktop după salvare.

## Autentificare

Claude Desktop deschide browserul la `https://api.flowstep.ai/oauth/authorize` la prima conexiune. Conectează-te cu acreditările tale Flowstep și aplicația capturează apelul de retur (callback).

<Note>
  Ai nevoie de un cont Flowstep înainte de a te conecta. Creează-l la [app.flowstep.ai](https://app.flowstep.ai).
</Note>

## Verifică conexiunea

Într-o conversație Claude Desktop:

```
List my Flowstep files
```

Dacă vezi o listă de fișiere (sau o matrice goală dacă nu ai fișiere deocamdată), conexiunea funcționează.

## Exemplu de utilizare

```
Create a Flowstep file called "Profile page", generate a mobile profile screen
with an avatar, display name, bio, and an edit button. Show me the rendered image.
```

Claude Desktop va apela `create-file` → `ai-prompt` → `get-screen-image` în secvență.
