> ## 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) से Streamable 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 पहली बार जब कोई Flowstep टूल कॉल करता है तो OAuth 2.1 PKCE फ्लो को स्वचालित रूप से हैंडल करता है। आपका ब्राउज़र `https://api.flowstep.ai/oauth/authorize` पर खुलता है। अपने Flowstep क्रेडेंशियल्स के साथ साइन इन करें और CLI कॉलबैक को कैप्चर करता है।

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