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

> Connectez Flowstep à Claude Desktop à l'aide du transport MCP HTTP Streamable.

## Configuration

Modifiez `claude_desktop_config.json`. L'emplacement du fichier dépend de votre système d'exploitation :

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

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

  <Tab title="mcp-remote (versions antérieures)">
    Nécessite Node.js installé.

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

Redémarrez Claude Desktop après avoir sauvegardé.

## Authentification

Claude Desktop ouvre votre navigateur sur `https://api.flowstep.ai/oauth/authorize` lors de la première connexion. Connectez-vous avec vos identifiants Flowstep et l'application capture le rappel.

<Note>
  Vous avez besoin d'un compte Flowstep avant de vous connecter. Créez-en un à [app.flowstep.ai](https://app.flowstep.ai).
</Note>

## Vérifiez la connexion

Dans une conversation Claude Desktop :

```
List my Flowstep files
```

Si vous voyez une liste de fichiers (ou un tableau vide si vous n'avez pas encore de fichiers), la connexion fonctionne.

## Exemple d'utilisation

```
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 appellera `create-file` → `ai-prompt` → `get-screen-image` en séquence.
