> ## 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 ל-Claude Code (CLI) באמצעות טרנספורט HTTP MCP ניתן להזרמה.

## Configuration

הוסף את השרת להגדרות Claude Code שלך. השתמש בקובץ ההגדרות הגלובלי כדי להפעיל אותו בכל מקום, או הוסף אותו לפי פרויקט.

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

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

לחלופין, השתמש ב-CLI:

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

## Authentication

Claude Code מטפל בזרימת OAuth 2.1 PKCE באופן אוטומטי בפעם הראשונה שהוא קורא לכלי Flowstep. הדפדפן שלך נפתח ל-`https://api.flowstep.ai/oauth/authorize`. התחבר עם אישורי Flowstep שלך וה-CLI לוכד את ה-callback.

<Note>
  אתה צריך חשבון Flowstep לפני האימות. צור אחד ב-[app.flowstep.ai](https://app.flowstep.ai).
</Note>

## Verify the connection

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

השרת צריך להופיע כמחובר. ואז בתוך הפעלת Claude Code:

```
List my Flowstep files
```

## Usage example

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