mpv-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mpv-mcp-serverplay 'Bohemian Rhapsody' from my library"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mpv-mcp-server
MCP server for controlling mpv media player. Browse your music library, control playback, stream from YouTube, and download tracks — all from inside an MCP client like Claude Code.
Prerequisites
mpv — media player (must be on your PATH, or set
MPV_PATH)Node.js 22+
yt-dlp (optional) — required for YouTube streaming and downloading
ffmpeg (optional) — required for audio extraction, metadata reading (ffprobe), and tagging
Related MCP server: social-video-mcp
Quick Start
Claude Code
Add to your project's .mcp.json:
{
"mcpServers": {
"mpv": {
"command": "npx",
"args": ["-y", "mpv-mcp-server"]
}
}
}Or add at user scope (available in all projects):
claude mcp add mpv --scope user -- npx -y mpv-mcp-serverClaude Desktop
Add to your Claude Desktop config:
{
"mcpServers": {
"mpv": {
"command": "npx",
"args": ["-y", "mpv-mcp-server"]
}
}
}With environment overrides
{
"mcpServers": {
"mpv": {
"command": "npx",
"args": ["-y", "mpv-mcp-server"],
"env": {
"MPV_PATH": "/usr/local/bin/mpv",
"MPV_MEDIA_DIRS": "/home/user/Music,/home/user/Podcasts",
"MPV_DOWNLOAD_DIR": "/home/user/Music"
}
}
}
}Configuration
All configuration is via environment variables. Everything has sensible defaults.
Variable | Default | Description |
|
| Path to mpv executable |
|
| IPC socket path |
|
| Comma-separated media directories to scan |
|
| Where downloaded files are saved |
Tools
Playback
Tool | Description |
| Play a file by path or search term |
| Pause playback |
| Resume playback |
| Stop playback |
| Get current playback status |
| Seek to position ( |
| Get or set volume (0-150) |
Library
Tool | Description |
| List and search available media files |
| Show current playlist |
| Add a track to the playlist |
| Load a playlist file (.m3u, .pls, .txt) |
| Skip to next track |
| Go to previous track |
YouTube
Tool | Description |
| Search YouTube and stream through mpv (supports append mode) |
| Download from YouTube (audio or video) |
YouTube tools require yt-dlp on your PATH. Audio downloads also require ffmpeg.
Metadata
Tool | Description |
| Get metadata for the current track or any file by search term |
| Write metadata tags (artist, title, album, genre, date, comment) to a file |
Both tools infer artist/title from the "Artist - Title" filename pattern. Requires ffmpeg (includes ffprobe).
How It Works
The server communicates with mpv via its JSON IPC protocol. On Windows this uses a named pipe, on macOS/Linux a Unix domain socket. If mpv isn't running, the server spawns it automatically in idle mode. The mpv process is detached, so it keeps playing even if the MCP server exits.
Platform Support
Developed and tested on Windows. macOS/Linux support is implemented but untested — issues and PRs welcome!
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/arijit-gogoi/mpv-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server