npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ai-creatrip-mcp

v1.5.1

Published

Model Context Protocol 프록시 서버 CLI 도구

Readme

AI Creatrip MCP

AI Creatrip MCP는 로컬에서 동작하는 여러 Model Context Protocol(MCP) 서버를 단일 인터페이스로 통합하고 ai.creatrip.com에서 사용할 수 있게 돕는 도구입니다.

설치

NPM을 통한 전역 설치

npm install -g ai-creatrip-mcp

PNPM을 통한 전역 설치

pnpm add -g ai-creatrip-mcp

사용법

서버 실행

ai-creatrip-mcp

옵션

ai-creatrip-mcp --help

기본 옵션:

  • -k, --key <path>: SSL 키 파일 경로 (기본값: ./localhost+1-key.pem)
  • -C, --cert <path>: SSL 인증서 파일 경로 (기본값: ./localhost+1.pem)
  • -p, --port <number>: 서버 포트 (기본값: 6277)

설정 방법

이 프록시 서버는 설정 파일을 사용하지 않고, 서버 실행 후 /config 엔드포인트를 통해 동적으로 설정을 주입받습니다. ai.creatrip.com에서 자동으로 설정을 관리하므로 별도의 설정이 필요하지 않습니다.

설정 형식은 다음과 같은 JSON 구조를 따릅니다:

{
  "mcpServers": {
    "github": {
      "command": "npx",
      "args": ["@modelcontextprotocol/github", "serve"],
      "env": {
        "GITHUB_TOKEN": "your-github-token"
      }
    },
    "custom-server": {
      "command": "/path/to/custom/server",
      "args": ["--option", "value"],
      "env": {
        "API_KEY": "your-api-key"
      }
    }
  }
}

수동으로 설정 주입하기

필요한 경우 다음과 같이 curl 명령을 사용하여 수동으로 설정을 주입할 수 있습니다:

curl -X POST https://localhost:6277/config \
  -H "Content-Type: application/json" \
  -d '{"mcpServers":{"github":{"command":"npx","args":["@modelcontextprotocol/github","serve"],"env":{"GITHUB_TOKEN":"your-github-token"}}}}' \
  --insecure

개발

의존성 설치:

pnpm install

빌드:

pnpm run build

로컬에서 실행:

node build/cli.js

SSL 인증서

사용을 위해 SSL 인증서가 필요합니다. mkcert를 사용하여 로컬 인증서를 생성할 수 있습니다:

# mkcert 설치
brew install mkcert  # macOS

# 인증서 생성
mkcert localhost 127.0.0.1

생성된 localhost+1.pemlocalhost+1-key.pem 파일을 프로젝트 디렉토리에 복사하세요.

AI 플랫폼과 함께 사용하기

CLI를 실행한 상태에서 ai.creatrip.com에 접속하면 자동으로 MCP 프록시 서버가 인식되고 설정됩니다. 별도의 설정 파일 작성이나 관리가 필요하지 않습니다.

  1. ai-creatrip-mcp 명령으로 프록시 서버 실행
  2. ai.creatrip.com 접속
  3. 자동으로 MCP 서버 연결 및 설정 완료

레퍼런스