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

@coeiro-operator/mcp

v1.5.1

Published

MCP server for COEIRO Operator

Downloads

401

Readme

@coeiro-operator/mcp

COEIROINK音声合成のMCP(Model Context Protocol)サーバー

Claude Codeで音声対話機能を実現するMCPサーバーです。

インストール

方法1: グローバルインストール(推奨)

# インストール
npm install -g @coeiro-operator/mcp

# MCPサーバーを登録
claude mcp add coeiro-operator

方法2: npxで直接実行

claude_desktop_config.jsonに直接追加:

{
  "mcpServers": {
    "coeiro-operator": {
      "command": "npx",
      "args": ["-y", "--package", "@coeiro-operator/mcp", "coeiro-operator"]
    }
  }
}

npx -y --package "@coeiro-operator/mcp" coeiro-operatorでパッケージを自動インストールしてcoeiro-operatorコマンドを実行します

提供される機能

音声合成

  • say - テキストを音声で読み上げ
  • operator_assign - オペレータ(音声キャラクター)の割り当て
  • operator_release - オペレータの解放
  • operator_status - 現在のオペレータ状態確認
  • operator_available - 利用可能なオペレータ一覧
  • operator_styles - 音声スタイル一覧

ユーザー辞書

  • dictionary_register - 単語の読み方を登録

デバッグ

  • debug_logs - デバッグログの取得
  • parallel_generation_control - 並行生成制御

使用例(Claude Codeでの会話)

ユーザー: こんにちはと音声で言って

Claude Code: [say ツールを使用して「こんにちは」を音声出力]

ユーザー: つくよみちゃんに切り替えて

Claude Code: [operator_assign ツールでtsukuyomiに切り替え]

ユーザー: ひそひそ声でお疲れ様と言って

Claude Code: [say ツールでstyle: "ひそひそ"を指定して音声出力]

※ MCPツールはClaude Codeが自動的に判断して使用します

動作要件

  • Node.js 18以上
  • COEIROINK本体が起動済み(http://localhost:50032)
  • Claude Code(MCPクライアント)

詳細

完全なドキュメントは GitHub を参照してください。

ライセンス

MIT