> ## 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 Code

> Conectează Flowstep la Claude Code (CLI) folosind transportul MCP HTTP Streamable.

## Configurare

Adaugă serverul la setările Claude Code. Folosește fișierul de setări global pentru a-l activa pretutindeni, sau adaugă-l per-proiect.

<Tabs>
  <Tab title="Global (~/.claude/settings.json)">
    ```json theme={"system"}
    {
      "mcpServers": {
        "flowstep-production": {
          "type": "http",
          "url": "https://api.flowstep.ai/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="Proiect (.claude/settings.json)">
    ```json theme={"system"}
    {
      "mcpServers": {
        "flowstep-production": {
          "type": "http",
          "url": "https://api.flowstep.ai/mcp"
        }
      }
    }
    ```
  </Tab>
</Tabs>

Alternativ, folosește CLI-ul:

```bash theme={"system"}
claude mcp add --transport http flowstep-production https://api.flowstep.ai/mcp
```

## Autentificare

Claude Code gestionează fluxul OAuth 2.1 PKCE automat prima dată când apelează un instrument Flowstep. Browserul tău se deschide la `https://api.flowstep.ai/oauth/authorize`. Conectează-te cu acreditările tale Flowstep și CLI-ul capturează callback-ul.

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

## Verifică conexiunea

```bash theme={"system"}
claude mcp list
```

Serverul ar trebui să apară ca conectat. Apoi într-o sesiune Claude Code:

```
List my Flowstep files
```

## Exemplu de utilizare

```
Create a Flowstep file called "Settings page", generate a desktop settings screen
for a developer tool with sections for API keys, notifications, and team members.
Show me the rendered image when done.
```
