> ## Documentation Index
> Fetch the complete documentation index at: https://docs.replit.com/llms.txt
> Use this file to discover all available pages before exploring further.

# MCP 설치 링크

> MCP 설치 링크 참조 — URL 형식, 페이로드 스키마, 배지 커스터마이징.

설치 링크를 사용하면 사용자가 원클릭으로 MCP 서버를 Replit에 추가할 수 있습니다. 링크를 생성하려면 [MCP로 연결하기](/build/connect-via-mcp#share-an-install-link)의 양식을 사용하세요.

## 링크 형식

설치 링크는 서버 구성을 포함하는 base64 인코딩된 JSON 페이로드를 사용합니다:

```
https://replit.com/integrations?mcp={payload}
```

페이로드에는 다음이 포함됩니다:

* **displayName**: 설치 중 사용자에게 표시되는 이름
* **baseUrl**: MCP 서버의 HTTPS 엔드포인트
* **headers**: 선택적 인증 헤더

```json theme={null}
{
  "displayName": "My MCP Server",
  "baseUrl": "https://example.com/mcp",
  "headers": [
    {
      "key": "Authorization",
      "value": "Bearer your-token"
    }
  ]
}
```

## 배지 사용하기

README나 문서에 클릭 가능한 배지를 추가하면, 클릭 시 MCP 서버가 설치됩니다.

```markdown theme={null}
[![Install My MCP](https://replit.com/badge?caption=Install%20My%20MCP)](https://replit.com/integrations?mcp={payload})
```

<Frame>
  ![Install MCP Badge](https://replit.com/badge?caption=Install%20MCP%20Server)
</Frame>

`caption` 파라미터의 텍스트를 URL 인코딩하여 배지 캡션을 커스터마이징할 수 있습니다 (최대 30자).
