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

> Připojit Flowstep k Claude Desktop pomocí Streamable HTTP MCP transportu.

## Konfigurace

Upravit `claude_desktop_config.json`. Umístění souboru závisí na vašem OS:

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

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

  <Tab title="mcp-remote (starší verze)">
    Vyžaduje Node.js instalován.

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

Po uložení restartujte Claude Desktop.

## Ověřování

Claude Desktop otevře váš prohlížeč na `https://api.flowstep.ai/oauth/authorize` při prvním připojení. Přihlaste se svými přihlašovacími údaji Flowstep a aplikace zachytí callback.

<Note>
  Před připojením potřebujete účet Flowstep. Vytvořte si jej na [app.flowstep.ai](https://app.flowstep.ai).
</Note>

## Ověřit připojení

V konverzaci Claude Desktop:

```
List my Flowstep files
```

Pokud vidíte seznam souborů (nebo prázdné pole, pokud nemáte žádné soubory), připojení funguje.

## Příklad použití

```
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 zavolá `create-file` → `ai-prompt` → `get-screen-image` postupně.
