Teleport로 MCP 서버에 접근하기
Teleport가 제공하는 MCP 서버를 사용하도록 MCP 클라이언트를 구성하는 방법.
이 가이드는 Teleport가 제공하는 MCP 서버에 접근하도록 MCP 클라이언트를 구성하는 방법을 설명합니다. 사전 요구 사항 # A running Teleport (v18.1.0 or higher) cluster. If you want to get started with Teleport, sign up for a free trial or set up a demo environment . The `tsh` client. Installing \`tsh\` client Determine the version of your Teleport cluster. The `tsh` client must be at most one major version behind your Teleport cluster version. Send a GET request to the Proxy Service at /v1/webapi/find and use a JSON query tool to obtain your cluster version. Replace with the web address of your Teleport Proxy Service: $ TELEPORT_DOMAIN= $ TELEPORT_VERSION="$(curl -s https://$TELEPORT_DOMAIN/v1/webapi/find | jq -r '.server_version')" Follow the instructions for your platform to install `tsh` client: Teleport MCP Access가 구성되어 있어야 합니다. MCP Access 구성하기 데모 MCP 서버로 빠르게 시작하기 . Stdio MCP 서버를 사용한 MCP Access 1/2단계. MCP 클라이언트 구성하기 # 먼저, tsh login 을 사용하여 Teleport 클러스터에 로그인합니다. 클러스터의 Teleport Proxy Service 웹 주소를 에 지정합니다: $ tsh login --proxy= --user=myuser@example.com 이제 사용 가능한 MCP 서버 목록을 확인할 수 있습니다: $ tsh mcp ls Name Description Type Labels -------------- ------------------------------------------ ----- -------------------- fs Filesystem MCP Server stdio env=prod mcp-everything This MCP server attempts to exercise al... stdio env=dev,sandbox=true tsh mcp config 명령을 사용하여 MCP 클라이언트 구성을 생성할 수 있습니다. --labels 플래그를 사용하여 레이블로 필터링하거나, 접근 가능한 모든 MCP 서버를 구성하는 --all 을 지정하여 구성할 서버를 선택할 수 있습니다. 이 명령은 수동 MCP 클라이언트 업데이트를 위한 구성 파일( mcpServers 형식 사용)을
