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

> Csatlakoztasd a Flowstepet Claude Code-hoz (CLI) a Streamable HTTP MCP átvitellel.

## Konfiguráció

Adj hozzá egy szervert a Claude Code beállításaihoz. Használd a globális beállítási fájlt, hogy mindenhol engedélyezd, vagy add hozzá projekt alapon.

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

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

Alternatívaként használd a CLI-t:

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

## Hitelesítés

Claude Code automatikusan kezeli az OAuth 2.1 PKCE folyamatot az első alkalommal, amikor meghív egy Flowstep eszközt. A böngésződ megnyílik a `https://api.flowstep.ai/oauth/authorize` oldalon. Jelentkezz be a Flowstep hitelesítési adataiddal, és a CLI rögzíti a visszahívást.

<Note>
  A hitelesítés előtt szükséged van egy Flowstep fiókra. Hozz létre egyet az [app.flowstep.ai](https://app.flowstep.ai) oldalon.
</Note>

## A kapcsolat ellenőrzése

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

A szerver csatlakozottként kell hogy megjelenjen. Ezt követően egy Claude Code munkamenetben:

```
List my Flowstep files
```

## Használati példa

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