mcptools

(★ 1,619)

A command-line interface for interacting with MCP (Model Context Protocol) servers using both stdio and HTTP transport.

파일 탐색기

  • .gitignore
  • .gitmessage
  • .golangci.yml
  • .goreleaser.yml
  • CONTRIBUTING.md
  • go.mod
  • go.sum
  • LICENSE
  • Makefile
  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

brew install

설명 보기 ▼

Install a Homebrew formula or cask.

brew install {{formula|cask}}

Install a formula/cask:

brew install {{[-s|--build-from-source]}} {{formula}}

Build and install a formula from source (dependencies will still be installed from bottles):

brew install {{[-n|--dry-run]}} {{formula|cask}}

Download the manifest, print what would be installed but don't actually install anything:

🔍

brew tap

설명 보기 ▼

Tap a Homebrew formula repository. If no arguments are provided, list all installed Homebrew taps.

brew tap

List installed Homebrew taps:

brew tap {{github_username}}/{{github_repository_name}}

Tap a Git repository hosted on GitHub:

brew tap {{username}}/{{repository_name}} {{git_clone_url}}

Tap a Git repository hosted outside of GitHub:

🔍

docker run

설명 보기 ▼

This command is an alias of `docker container run`.

tldr docker container run

View documentation for the original command:

🔍

go install

설명 보기 ▼

Compile and install packages named by the import paths.

go install

Compile and install the current package:

go install {{path/to/package}}

Compile and install a specific local package:

go install {{golang.org/x/tools/gopls}}@{{latest}}

Install the latest version of a program, ignoring `go.mod` in the current directory:

🔍

npm install

설명 보기 ▼

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

Download the latest version of a package and add it to the list of dev dependencies in `package.json`:

🔍

npm run

설명 보기 ▼

Run a script.

npm run

List available scripts:

npm run {{script_name}}

Run a script:

npm run {{script_name}} -- {{argument}} {{--option}}

Pass arguments to a script:

🔍

npm start

설명 보기 ▼

This command is an alias of `npm run start`.

tldr npm run

View documentation for the original command:

🔍

npx

설명 보기 ▼

이 명령은 `npm exec`의 별칭입니다.

tldr npm exec

자세한 내용은 원본 명령을 참고하세요:

🔍

qrencode

설명 보기 ▼

QR 코드 생성기. PNG와 EPS를 지원합니다.
관련 항목: `qr`.
더 많은 정보: <https://manned.org/qrencode>.

qrencode {{[-o|--output]}} {{path/to/output_file.png}} {{string}}

문자열을 QR 코드로 변환하여 출력 파일로 저장:

qrencode {{[-o|--output]}} {{path/to/output_file.png}} {{[-M|--micro]}} {{string}}

입력 파일을 QR 코드로 변환하여 출력 파일로 저장:

qrencode {{[-o|--output]}} {{path/to/output_file.png}} {{[-r|--read-from]}} {{path/to/input_file}}

문자열을 QR 코드로 변환하여 터미널에 출력:

🔍

prompt

설명 보기 ▼

명령 창의 기본 DOS 스타일 프롬프트를 변경합니다.
더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/prompt>.

prompt

기본 설정으로 프롬프트 재설정:

prompt {{prompt}}

지정된 프롬프트로 설정:

prompt $D $P$G

현재 날짜를 먼저 표시하도록 프롬프트를 변경:

// repository documentation