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

@noeulnight/channelio-mcp

v0.1.1

Published

MCP server for the Channel.io Open API

Readme

Channel.io MCP Server

Channel.io 상담을 AI 에이전트에서 조회하고 관리하는 로컬 MCP 서버입니다.

  • 유저, 상담, 메시지, 매니저 조회
  • 상담 생성, 상태 변경, 담당자 배정
  • 내부 메모와 유저 답장을 분리하는 발송 권한
  • 에이전트 컨텍스트를 줄이는 compact 응답

Get started

필요한 항목:

  • Node.js 22 이상
  • Channel.io Open API access key와 access secret

Codex

~/.codex/config.toml에 추가합니다.

[mcp_servers.channelio]
command = "npx"
args = ["-y", "@noeulnight/channelio-mcp@latest"]
startup_timeout_sec = 120

[mcp_servers.channelio.env]
CHANNEL_ACCESS_KEY = "your-access-key"
CHANNEL_ACCESS_SECRET = "your-access-secret"
CHANNEL_SEND_MODE = "internal"

Other MCP clients

stdio MCP 서버를 지원하는 클라이언트에서는 다음 구성을 사용합니다.

{
  "mcpServers": {
    "channelio": {
      "command": "npx",
      "args": ["-y", "@noeulnight/channelio-mcp@latest"],
      "env": {
        "CHANNEL_ACCESS_KEY": "your-access-key",
        "CHANNEL_ACCESS_SECRET": "your-access-secret",
        "CHANNEL_SEND_MODE": "internal"
      }
    }
  }
}

설정 후 MCP 클라이언트를 다시 시작합니다.

Send mode

CHANNEL_SEND_MODE은 에이전트가 메시지를 보낼 수 있는 범위를 제한합니다.

| 값 | 동작 | | ---------- | --------------------------------------------------------- | | disabled | 메시지 전송 도구를 노출하지 않습니다. | | internal | 모든 메시지를 매니저에게만 보이는 내부 메모로 작성합니다. | | all | 내부 메모와 유저에게 보이는 답장을 모두 허용합니다. |

기본값은 disabled입니다. 유저 답장이 필요하지 않다면 internal을 권장합니다.

internal 모드는 모든 메시지에 Channel.io의 private 옵션을 강제합니다. all 모드에서는 호출 시 private 옵션을 지정한 메시지만 내부 메모가 됩니다.

이 설정은 send_user_chat_message에만 적용됩니다. 다른 변경 도구의 노출 여부에는 영향을 주지 않습니다.

Usage

설정이 끝나면 에이전트에게 자연어로 요청할 수 있습니다.

  • “진행 중인 상담 10개 보여줘.”
  • “이 유저의 상담과 최근 메시지를 확인해줘.”
  • “이 상담에 내부 메모로 인수인계 내용을 남겨줘.”
  • “이 상담을 30분 동안 보류해줘.”
  • “이 상담 담당자를 김매니저로 변경해줘.”

유저에게 보이는 답장은 CHANNEL_SEND_MODE=all일 때만 가능합니다.

Tools

Read

| 도구 | 설명 | | -------------------------------- | -------------------------------------- | | get_user | userId 또는 memberId로 유저 조회 | | list_user_chats | 상태별 또는 특정 유저의 상담 목록 조회 | | get_user_chat | 상담 상세 조회 | | list_user_chat_messages | 상담 메시지 목록 조회 | | get_user_chat_message_file_url | 첨부파일 다운로드 URL 조회 | | get_managers | 매니저 목록 또는 단건 조회 |

Write

| 도구 | 설명 | | ------------------------------ | ---------------------------------------------- | | create_user_chat | 특정 유저에게 신규 상담 생성 | | send_user_chat_message | 발송 권한에 따라 내부 메모 또는 유저 답장 작성 | | change_user_chat_status | 상담 열기, 보류 또는 종료 | | assign_user_chat | 상담 담당 매니저 배정 | | invite_managers_to_user_chat | 상담에 매니저 초대 |

Configuration

| 환경변수 | 기본값 | 설명 | | ----------------------- | ------------------------ | ------------------------------------- | | CHANNEL_ACCESS_KEY | 필수 | Channel.io Open API access key | | CHANNEL_ACCESS_SECRET | 필수 | Channel.io Open API access secret | | CHANNEL_SEND_MODE | disabled | disabled, internal, all 중 하나 | | CHANNEL_VERSION | 2026-06-01 | Channel.io API 버전 | | CHANNEL_API_BASE_URL | https://api.channel.io | API base URL |

Responses

모든 도구의 responseMode 기본값은 compact입니다. 작업에 필요한 필드만 반환해 에이전트의 토큰 사용량을 줄입니다. Channel.io 원본 응답이 필요하면 responseMode: "full"을 사용합니다.

목록 조회는 기본 10개를 반환하며 nextCursor로 다음 페이지를 조회합니다. 429 응답에는 에이전트가 같은 호출을 나중에 다시 시도할 수 있도록 retryAfteraction을 포함합니다.

Troubleshooting

| 증상 | 확인할 항목 | | ------------------------- | ----------------------------------------------------------- | | 서버가 시작되지 않음 | access key와 access secret이 모두 설정됐는지 확인합니다. | | 메시지 도구가 보이지 않음 | CHANNEL_SEND_MODEinternal 또는 all인지 확인합니다. | | 설정 변경이 반영되지 않음 | MCP 서버 또는 클라이언트를 다시 시작합니다. |