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

@channel.io/channel-talk-integration-mcp

v1.1.0

Published

Channel Talk Integration MCP - Installation guides for Channel Talk SDK across multiple platforms

Readme

Channel Talk Integration MCP

Channel Talk SDK 설치 가이드를 제공하는 Model Context Protocol(MCP) 서버입니다. 다양한 플랫폼(웹, 모바일, 웹뷰)에서 Channel Talk을 쉽게 설치할 수 있도록 상세한 가이드를 제공합니다.

🚀 기능

이 MCP 서버는 다음과 같은 Channel Talk 설치 가이드를 제공합니다:

  • 초기 가이드: Channel Talk 소개 및 플랫폼 선택 안내 (한국어/영어)
  • 웹사이트: JavaScript SDK 설치 가이드 (직접 로드/NPM 모듈)
  • Android: Android SDK 설치 가이드 (Kotlin/Java)
  • iOS: iOS SDK 설치 가이드 (Swift/Objective-C)
  • React Native: React Native SDK 설치 가이드
  • 웹뷰: 웹뷰 환경에서의 설치 가이드 (Android/iOS)

📦 설치

npm install @channel.io/channel-talk-integration-mcp

또는

yarn add @channel.io/channel-talk-integration-mcp

🛠️ 사용법

MCP 클라이언트에서 사용

  1. MCP 클라이언트 설정에 서버 추가:
{
  "mcpServers": {
    "channel-talk-integration": {
      "command": "npx",
      "args": ["@channel.io/channel-talk-integration-mcp@latest"]
    }
  }
}
  1. 사용 가능한 도구들:

| 도구명 | 설명 | 언어 지원 | | ------------------------ | ------------------------------ | ----------- | | get_initial_guide | Channel Talk 소개 및 초기 안내 | 한국어/영어 | | get_web_guide | 웹사이트 설치 가이드 | 한국어/영어 | | get_android_guide | Android 앱 설치 가이드 | 한국어/영어 | | get_ios_guide | iOS 앱 설치 가이드 | 한국어/영어 | | get_react_native_guide | React Native 앱 설치 가이드 | 한국어/영어 | | get_webview_guide | 웹뷰 설치 가이드 | 한국어/영어 |

언어 설정

모든 도구는 선택적 language 파라미터를 지원합니다:

  • language: "ko" 또는 파라미터 없음: 한국어 가이드
  • language: "en": 영어 가이드

🏗️ 프로젝트 구조

src/
├── tools/                    # MCP 도구 정의
│   ├── get-initial-guide.ts     # 초기 가이드 도구
│   ├── get-web-guide.tool.ts    # 웹 가이드 도구
│   ├── get-android-guide.tool.ts # Android 가이드 도구
│   ├── get-ios-guide.tool.ts    # iOS 가이드 도구
│   ├── get-react-native-guide.tool.ts # React Native 가이드 도구
│   └── get-webview-guide.tool.ts # 웹뷰 가이드 도구
└── index.ts                  # 메인 진입점

🔧 개발

로컬 개발 환경 설정

# 의존성 설치
pnpm install

# 개발 모드 실행 (파일 변경 감지)
pnpm dev

# 빌드
pnpm build

# 타입 체크
pnpm typecheck

# 린트
pnpm lint
pnpm lint:fix

새로운 가이드 추가

  1. src/tools/ 디렉토리에 새 도구 파일 생성
  2. Zod 스키마를 사용한 파라미터 정의
  3. 한국어/영어 가이드 함수 구현
  4. 공통 코드는 별도 함수로 분리
  5. src/index.ts에서 도구 등록

📚 관련 문서

🤝 기여

버그 리포트나 기능 요청은 https://root.channel.io에서 제출해주세요.

📄 라이선스

MIT License

👨‍💻 개발자

Byeongchan Park ([email protected])


© 2025 Channel Corp. All rights reserved.