Audio Player MCP Server
オーディオプレーヤーMCPサーバー
Claude がコンピューター上のオーディオ再生を制御できるようにする Model Context Protocol (MCP) サーバー。
特徴
MP3、WAV、OGG オーディオ ファイルを再生します。
音楽ディレクトリ内の利用可能なオーディオ ファイルを一覧表示します。
オーディオの再生を停止します。
ディレクトリ分離による安全なファイル アクセス。
Related MCP server: Spotify MCP Server
要件
Python 3.10 以上。
Claude Desktop (最新バージョン)。
インストール
リポジトリをクローンします。
git clone https://github.com/Here-and-Tomorrow-LLC/audio-player-mcp.gitリポジトリ ディレクトリに移動します。
cd audio-player-mcp編集可能なモードでパッケージをインストールします。
pip install -e .
Claude Desktopでのセットアップ
Claude デスクトップの設定を開き、次の場所に移動します。
Developer > Edit Config設定ファイルを見つけます:
Mac :
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows :
%APPDATA%\Claude\claude_desktop_config.json
オペレーティング システムに基づいて次の構成を追加します。
Mac/Linux:
{ "mcpServers": { "audio-player": { "command": "/path/to/your/venv/bin/python", "args": [ "/path/to/your/audio-player-mcp/src/audio_player_mcp/player.py" ], "env": { "AUDIO_PLAYER_DIR": "/path/to/your/audio/files" } } } }ウィンドウズ:
{ "mcpServers": { "audio-player": { "command": "C:\path\to\your\venv\Scripts\python.exe", "args": [ "C:\path\to\your\audio-player-mcp\src\audio_player_mcp\player.py" ], "env": { "AUDIO_PLAYER_DIR": "C:\path\to\your\audio\files" } } } }注意:
AUDIO_PLAYER_DIRが設定されていない場合、サーバーはデフォルトでホーム ディレクトリのMusicフォルダを使用します。Claude Desktop を再起動します。
使用法
Claude に質問することで、オーディオの再生を制御できるようになりました。
「どんなオーディオファイルがありますか?」
「song.mp3を再生してください。」
「音楽を止めてください。」
トラブルシューティング
何かが動作しない場合は、Claude のログを確認してください。
マック:
tail -f ~/Library/Logs/Claude/mcp*.logウィンドウズ:
type "%APPDATA%\Claude\logs\mcp*.log"
発達
リポジトリをクローンします。
git clone https://github.com/yourusername/audio-player-mcp.gitリポジトリ ディレクトリに移動します。
cd audio-player-mcp開発依存関係をインストールします。
pip install -e ".[dev]"MCP サーバーを開発モードで実行します。
mcp dev src/audio_player_mcp/player.py
ライセンス
このプロジェクトはMIT ライセンスに基づいてライセンスされています。
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
The Listenetic MCP server is a remote, cloud-hosted server that enables AI assistants like ChatGPT and Claude to convert articles, documents, websites, and videos into high-quality AI-generated audio. It provides multi-format support for text and binary files, natural-sounding text-to-audio conversion using AI, and specialized processing for SSML, markup, markdown, and various media formats through three core tools: listentic_supported_mimetypes, listentic_add_content_text, and listentic_add_content_binary.
MCP server for Producer/Riffusion AI music generation
MCP server exposing the AceDataCloud Fish Audio API (text-to-speech with voice conditioning)
Related MCP Servers
- AlicenseBqualityCmaintenanceA server that connects Claude with Spotify, allowing users to control playback, search content, get information about tracks/albums/artists/playlists, and manage the Spotify queue.5614MIT
- AlicenseBqualityCmaintenanceMCP server for the Spotify Web API — gives Claude and other AI assistants tools to search music, control playback, manage playlists, library, and podcasts.59MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that gives Claude access to your SoundCloud library, allowing you to manage playlists and tracks through natural language.2AGPL 3.0
- AlicenseNot gradedqualityCmaintenanceA stdio MCP server for Claude Desktop that provides an interactive media player, a local command runner, and file read/write/edit tools.MIT