Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"plex": {
"args": [
"plex-mcp-server",
"--transport",
"stdio",
"--plex-url",
"http://your-server:32400",
"--plex-token",
"your-token"
],
"command": "uvx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A powerful Model-Context-Protocol (MCP) server for interacting with Plex Media Server. It provides a standardized JSON-based interface for automation, AI agents (like Claude), and custom integrations.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked plex-mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in entertainment
AI Skills, MCP Tools, and CLI for Unity Engine. Full AI develop and test loop. Use cli for quick setup. Efficient token usage, advanced tools. Any C# method may be turned into a tool by a single line. Works with Claude Code, Gemini, Copilot, Cursor and any other absolutely for free.
Music studio: ABC notation composition and Strudel live coding with ext-apps UI.
YouTube as a queryable database for AI agents. 41 tools, zero config.
The official ElevenLabs MCP server
MCP Security Weekly
Get CVE alerts and security updates for Plex Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A powerful Model-Context-Protocol (MCP) server for interacting with Plex Media Server. It provides a standardized JSON-based interface for automation, AI agents (like Claude), and custom integrations.
stdio and SSE (Server-Sent Events).Run directly without installation:
uvx plex-mcp-server --transport stdio --plex-url http://your-server:32400 --plex-token your-token
pip install plex-mcp-server
git clone https://github.com/vladimir-tutin/plex-mcp-server.git
cd plex-mcp-server
pip install -e .
Set your Plex server URL and Token using one of these methods:
plex-mcp-server --plex-url "http://192.168.1.10:32400" --plex-token "ABC123XYZ"
Create a .env file in the current directory or ~/.config/plex-mcp-server/.env:
PLEX_URL=http://localhost:32400
PLEX_TOKEN=your-authentication-token
MCP_OAUTH_ENABLED=false
or with OAuth Enabled
PLEX_URL=http://localhost:32400
PLEX_TOKEN=your-authentication-token
MCP_OAUTH_ENABLED=true
MCP_OAUTH_ISSUER=https://auth.example.com/application/o/plexmcp-oauth/
MCP_SERVER_URL=https://plexmcp.example.com
Example for Claude Desktop (%APPDATA%/Claude/claude_desktop_config.json):
{
"mcpServers": {
"plex": {
"command": "uvx",
"args": [
"plex-mcp-server",
"--transport",
"stdio",
"--plex-url",
"http://your-server:32400",
"--plex-token",
"your-token"
]
}
}
}
Go to https://claude.ai/settings/connectors and add a new connector with the following settings:
Tools for exploring and managing your Plex libraries.
| Command | Description | Parameters |
|---|---|---|
library_list | Lists all available libraries. | None |
library_get_stats | Gets statistics (count, size, types) for a library. | library_name |
library_refresh | Triggers a metadata refresh for a library. | library_name |
library_scan | Scans a library for new files. | library_name |
library_get_details | Gets detailed information about a library. | library_name |
library_get_recently_added | Lists recently added items in a library. | library_name, limit: int |
library_get_contents | Lists all items in a library. | library_name, limit: int |
Tools for searching, inspecting, and editing specific media items.
| Command | Description | Parameters |
|---|---|---|
media_search | Search for media across all libraries. | query, library_name, content_type |
media_get_details | Get comprehensive details for an item. | media_title, library_name, media_id |
media_edit_metadata | Update tags, genres, summary, or title. | media_title, library_name, new_title, new_summary, new_rating, new_release_date, new_genre, remove_genre, new_director, new_studio, new_tags |
media_delete | Remove an item from Plex. | media_title, library_name, media_id |
| `media_get_artwork |