- Home
- MCP servers
- Bouyomi MCP NodeJS Server
Bouyomi MCP NodeJS Server
- javascript
2
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"uraoz-bouyomichan-mcp-nodejs": {
"command": "npx",
"args": [
"-y",
"github:uraoz/bouyomichan-mcp-nodejs"
]
}
}
}You can run the Bouyomi MCP Server on Node.js to expose Bouyomi-chan text-to-speech control to MCP clients. This enables your clients to send text, voice, and voice settings to Bouyomi-chan through a standardized MCP interface, making it easy to orchestrate speech in your workflows and applications.
How to use
Connect your MCP client to Bouyomi MCP Server to send text prompts, select voice, and adjust playback settings. You can run the server locally and then connect from clients like Claude for Desktop or other MCP-enabled frontends. The server processes incoming requests to read aloud text using Bouyomi-chan and returns results or status information as appropriate.
To start using Bouyomi MCP Server via the standard local runtime, run the following steps on your machine after ensuring Bouyomi-chan’s HTTP integration is up on port 50080.
How to install
Prerequisites you must have before installation:
-
Node.js 16 or newer
-
npm 7 or newer
-
Bouyomi-chan installed with HTTP integration listening on port 50080
How to install
git clone https://github.com/uraoz/bouyomichan-mcp-nodejs.git
cd bouyomichan-mcp-nodejs
npm install
npm run build
npm start
Claude for Desktop integration
{
"mcpServers": {
"bouyomichan":{
"command": "npx",
"args": [
"-y",
"github:uraoz/bouyomichan-mcp-nodejs"
]
}
}
}