InfoGrab DocsInfoGrab Docs

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 teleport.example.com:443 with the web address of your Teleport Proxy Service: $ TELEPORT_DOMAIN=teleport.example.com:443 $ TELEPORT_VERSION="$(curl -s https://$TELEPORT_DOMAIN/v1/webapi/find | jq -r '.server_version')" Follow the instructions for your platform to install `tsh` client: Mac Download the signed macOS .pkg installer for Teleport, which includes the \`tsh\` client: ```code $ curl -O https://cdn.teleport.dev/teleport-${TELEPORT_VERSION?}.pkg ``` In Finder double-click the `pkg` file to begin installation. Warning Using Homebrew to install Teleport is not supported. The Teleport package in Homebrew is not maintained by Teleport and we can't guarantee its reliability or security. Windows - Powershell ```code $ curl.exe -O https://cdn.teleport.dev/teleport-v${TELEPORT_VERSION?}-windows-amd64-bin.zip # Unzip the archive and move the \`tsh\` client to your %PATH% # NOTE: Do not place the \`tsh\` client in the System32 directory, as this can cause issues