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

> Hubungkan Flowstep ke Claude Desktop menggunakan transportasi HTTP MCP yang dapat dialirkan.

## Konfigurasi

Edit `claude_desktop_config.json`. Lokasi file tergantung pada OS Anda:

* **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 (versi lebih lama)">
    Memerlukan Node.js yang diinstal.

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

Mulai ulang Claude Desktop setelah menyimpan.

## Autentikasi

Claude Desktop membuka browser Anda ke `https://api.flowstep.ai/oauth/authorize` pada koneksi pertama. Masuk dengan kredensial Flowstep Anda dan aplikasi menangkap callback.

<Note>
  Anda memerlukan akun Flowstep sebelum terhubung. Buat satu di [app.flowstep.ai](https://app.flowstep.ai).
</Note>

## Verifikasi koneksi

Dalam percakapan Claude Desktop:

```
List my Flowstep files
```

Jika Anda melihat daftar file (atau array kosong jika Anda belum memiliki file), koneksi sedang bekerja.

## Contoh penggunaan

```
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 akan memanggil `create-file` → `ai-prompt` → `get-screen-image` secara berurutan.
