Skip to main content
Glama
nomercy360

Japanese Audio MCP Server

by nomercy360
README.md
# Japanese Audio — MCP Bundle (MCPB)

MCP Bundle that downloads Japanese word pronunciation audio from [JapanesePod101](https://www.japanesepod101.com/). 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 |

## Quick Start

### Install as MCPB bundle

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

### Manual Claude Desktop config

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

### Development

```bash
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/
```