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

> Streamable HTTP MCP 전송을 사용하여 Flowstep을 Cursor에 연결합니다.

## 설정

MCP 구성에 서버를 추가합니다. Cursor는 두 위치에서 이를 찾습니다 — 모든 프로젝트에서 활성화하려면 글로벌 파일을 사용하고, 특정 프로젝트에만 적용하려면 프로젝트 파일을 사용합니다.

<Tabs>
  <Tab title="전역 (~/.cursor/mcp.json)">
    ```json theme={"system"}
    {
      "mcpServers": {
        "flowstep": {
          "url": "https://api.flowstep.ai/mcp"
        }
      }
    }
    ```
  </Tab>

  <Tab title="프로젝트 (.cursor/mcp.json)">
    ```json theme={"system"}
    {
      "mcpServers": {
        "flowstep": {
          "url": "https://api.flowstep.ai/mcp"
        }
      }
    }
    ```
  </Tab>
</Tabs>

파일을 저장한 후 Cursor를 다시 시작합니다.

## 인증

**Settings → MCP**를 열고 Flowstep 옆의 **Connect**를 클릭합니다. Cursor가 브라우저를 `https://api.flowstep.ai/oauth/authorize`로 엽니다. Flowstep 자격 증명(이메일/암호 또는 Google SSO)으로 로그인합니다. Cursor가 콜백을 자동으로 캡처하고 토큰을 저장합니다.

<Note>
  연결하기 전에 Flowstep 계정이 필요합니다. [app.flowstep.ai](https://app.flowstep.ai)에서 계정을 만듭니다.
</Note>

## 연결 확인

Cursor 채팅에서 입력합니다:

```
List my Flowstep files
```

도구 호출이 성공하면 연결이 작동 중입니다.

## 사용 예시

```
Create a Flowstep file called "Onboarding", generate a mobile sign-up screen
with name, email, and password fields, then show me the image.
```

Cursor는 `create-file` → `ai-prompt` → `get-screen-image`을 순서대로 호출합니다.
