Skip to main content
Glama
nomercy360

Japanese Audio MCP Server

by nomercy360

Japanese Audio — MCP Bundle (MCPB)

MCP Bundle that downloads Japanese word pronunciation audio from JapanesePod101. No API key required.

Tools

Tool

Description

download_audio

Download pronunciation for a single word and save as MP3 file

batch_download_audio

Download pronunciation for multiple words and save as MP3 files

Related MCP server: Yomitan MCP Server

Quick Start

Install as MCPB bundle

npx @anthropic-ai/mcpb pack
# Open the .mcpb file with Claude Desktop

Manual Claude Desktop config

{
  "mcpServers": {
    "japanese-audio": {
      "command": "node",
      "args": ["/path/to/audio-gen/server/index.js"],
      "env": {
        "OUTPUT_PATH": "/path/to/audio/output"
      }
    }
  }
}

Development

npm install
node server/index.js

Usage

"Download audio for 掲示板"
→ download_audio(kanji="掲示板", kana="けいじばん")
→ Saves to OUTPUT_PATH/掲示板_けいじばん.mp3

Batch example:

"Download audio for these words: 先着(せんちゃく), 協会(きょうかい), 金額(きんがく)"
→ batch_download_audio(words=[...])
→ Saves all MP3 files to OUTPUT_PATH/

Related MCP Connectors

Related MCP Servers