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

> Flowstep को Claude Desktop से जुड़ें Streamable HTTP MCP ट्रांसपोर्ट का उपयोग करके।

## कॉन्फ़िगरेशन

`claude_desktop_config.json` संपादित करें। फ़ाइल स्थान आपके OS पर निर्भर करता है:

* **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 (older versions)">
    Node.js इंस्टॉल करना आवश्यक है।

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

सहेजने के बाद Claude Desktop को पुनः आरंभ करें।

## प्रमाणीकरण

Claude Desktop पहली कनेक्शन पर आपके ब्राउज़र को `https://api.flowstep.ai/oauth/authorize` पर खोलता है। अपने Flowstep क्रेडेंशियल से साइन इन करें और ऐप कॉलबैक को कैप्चर करता है।

<Note>
  कनेक्ट करने से पहले आपको एक Flowstep खाते की आवश्यकता है। [app.flowstep.ai](https://app.flowstep.ai) पर एक बनाएं।
</Note>

## कनेक्शन सत्यापित करें

Claude Desktop संवाद में:

```
List my Flowstep files
```

यदि आप एक फ़ाइल सूची देखते हैं (या एक खाली array यदि आपके पास अभी तक कोई फ़ाइलें नहीं हैं), तो कनेक्शन काम कर रहा है।

## उपयोग उदाहरण

```
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 `create-file` → `ai-prompt` → `get-screen-image` को क्रम में कॉल करेगा।
