> ## Content Index
> Fetch the complete content index at: https://kr.vizney.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# 클로드 데스크톱(Claude Desktop)에 태블로 퍼블릭 MCP 연동하기
- URL: https://kr.vizney.com/connect-tableau-public-mcp-to-claude-desktop/
- Published: 2026-08-30T08:52:47.000Z
- Updated: 2026-08-30T08:52:47.000Z
- Author: 황예환
- Tags: Knowledge Base

클로드 데스크톱(Claude Desktop)에 Tableau Public MCP(Model Context Protocol)를 연결하면, 자연어 대화만으로 태블로 퍼블릭에 게시된 대시보드 메타데이터 조회, 통합 문서(.twbx) 다운로드, 계산 필드 및 LOD 표현식 구조 분석 등의 작업을 바로 수행할 수 있습니다.

본 가이드는 태블로 비저너리(Visionary) Will Sutton이 공개한 오픈소스 프로젝트([tableau-public-mcp-server GitHub](https://github.com/wjsutton/tableau-public-mcp?ref=kr.vizney.com))를 기반으로 작성되었습니다. Node.js 환경과 설정 파일(`claude_desktop_config.json`)을 활용해 태블로 퍼블릭 MCP를 연결하는 전체 과정을 정리합니다.

[GitHub - wjsutton/tableau-public-mcp: An MCP Server for Tableau PublicAn MCP Server for Tableau Public. Contribute to wjsutton/tableau-public-mcp development by creating an account on GitHub.![](https://storage.ghost.io/c/71/f6/71f6ee37-5711-4588-b703-c29372b31c0a/content/images/icon/favicon-dca818bb-360f-44a6-9af8-722b1accff01.png)GitHubwjsutton![](https://storage.ghost.io/c/71/f6/71f6ee37-5711-4588-b703-c29372b31c0a/content/images/thumbnail/tableau-public-mcp-ac03cdce-e3d7-4f3d-b846-ea9aecc6aa10)](https://github.com/wjsutton/tableau-public-mcp?ref=kr.vizney.com)

---

### 사전 준비 (Prerequisites)

- [**Node.js (LTS 버전)**](https://nodejs.org/ko/download?ref=kr.vizney.com): MCP 서버 실행 패키지(`npx`) 구동을 위해 필요합니다.
- [**Claude Desktop 앱**](https://claude.com/download?ref=kr.vizney.com): Anthropic 공식 웹사이트에서 다운로드하여 설치합니다.

---

### Step 1\. Claude Desktop 설정 파일 열기

1. **Claude Desktop** 앱을 실행합니다.
2. 좌측 상단 메뉴 또는 프로필 아이콘 ➔ **\[설정(Settings)\]** ➔ **\[개발자(Developer)\]** 메뉴로 이동합니다.
3. 로컬 MCP 서버 항목의 **\[구성 편집(Edit Config)\]** 버튼을 클릭합니다.
4. 파일 탐색기가 열리며 설정 파일(`claude_desktop_config.json`)이 위치한 폴더로 이동합니다.

> **직접 경로로 이동하는 경우:** **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`**macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`

---

### Step 2\. 설정 파일(`claude_desktop_config.json`) 수정

텍스트 에디터로 `claude_desktop_config.json` 파일을 열고, Will Sutton의 MCP 패키지를 실행할 수 있도록 최상위 레벨에 `"mcpServers"` 항목을 추가합니다.

```JSON
{
  "mcpServers": {
    "tableau-public": {
      "command": "npx",
      "args": ["-y", "@wjsutton/tableau-public-mcp-server@latest"]
    }
  }
}

```

*기존에 `preferences` 등 다른 설정 값이 존재한다면, 최상단에 `"mcpServers"` 블록을 병합하고 쉼표(`,`)로 연결합니다.*

---

### Step 3\. Claude Desktop 재실행 및 연결 검증

1. 수정된 JSON 파일을 저장합니다.
2. 실행 중인 **Claude Desktop 앱을 완전히 종료 후 다시 실행**합니다. (Windows의 경우 작업 표시줄 트레이 영역에서도 백그라운드 프로세스가 종료되었는지 확인합니다.)
3. Claude 대화창에 `"태블로 퍼블릭 mcp에 연결된거야?"`라고 입력하여 테스트합니다.

연결이 성공하면 Claude가 사용 가능한 태블로 퍼블릭 도구 목록을 안내합니다:

- **시각화 및 작성자 검색**: 태블로 퍼블릭 내 통합 문서(viz), 프로필, 즐겨찾기, 팔로워 조회
- **Viz of the Day(VOTD)**: 오늘의 시각화 실시간 확인
- **.twbx 통합 문서 자동 분석**: 워크북 다운로드, 계산 필드/LOD 표현식 추출, 데이터 소스 프로파일링