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

> Flowstep'i Streamable HTTP MCP taşımasını kullanarak Claude Code (CLI) ile bağlayın.

## Yapılandırma

Sunucuyu Claude Code ayarlarınıza ekleyin. Her yerde etkinleştirmek için genel ayarlar dosyasını kullanın veya proje başına ekleyin.

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

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

Alternatif olarak, CLI'yı kullanın:

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

## Kimlik Doğrulama

Claude Code, ilk kez Flowstep aracını çağırdığında OAuth 2.1 PKCE akışını otomatik olarak işler. Tarayıcınız `https://api.flowstep.ai/oauth/authorize` adresine açılır. Flowstep kimlik bilgilerinizle oturum açın ve CLI geri çağrıyı yakalar.

<Note>
  Kimlik doğrulaması yapmadan önce bir Flowstep hesabına ihtiyacınız vardır. [app.flowstep.ai](https://app.flowstep.ai) adresinde bir hesap oluşturun.
</Note>

## Bağlantıyı Doğrulayın

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

Sunucu bağlı olarak görülmelidir. Ardından bir Claude Code oturumunda:

```
List my Flowstep files
```

## Kullanım Örneği

```
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.
```
