CCM
/MCP
SkillsMCPMarketplacesDigestLearnAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Learn
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Plex

vladimir-tutin/plex-mcp-server
111
Summary

Wraps the Plex Media Server API to let Claude manage your entire media library through natural language. You can search across libraries, edit metadata and artwork, create and manage playlists and collections, monitor active streaming sessions, and run administrative tasks like library scans and log retrieval. Supports both local stdio connections and remote SSE with OAuth for cloud deployments. The standardized JSON responses make it straightforward to build automation workflows around your Plex server, whether you're organizing content, tracking viewing habits, or performing maintenance tasks through conversational commands.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →

Plex MCP Server

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.

Features

  • Standardized API: Unified JSON responses for all Plex operations.
  • Multiple Transports: Supports both stdio and SSE (Server-Sent Events).
  • Comprehensive Control: Manage libraries, media, collections, playlists, clients, and users.
  • Remote Ready: Built-in OAuth 2.1 support for integration with remote AI platforms like Claude.ai.
  • Admin Tools: Access logs, monitor bandwidth, and run Butler tasks.

Installation

Option 1: Using uv (Recommended)

Run directly without installation:

uvx plex-mcp-server --transport stdio --plex-url http://your-server:32400 --plex-token your-token

Option 2: Install via pip

pip install plex-mcp-server

Option 3: Development / Source

git clone https://github.com/vladimir-tutin/plex-mcp-server.git
cd plex-mcp-server
pip install -e .

Configuration

Set your Plex server URL and Token using one of these methods:

1. Command Line Arguments

plex-mcp-server --plex-url "http://192.168.1.10:32400" --plex-token "ABC123XYZ"

2. Environment Variables (.env)

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

3. MCP Client Config

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"
      ]
    }
  }
}

4. Claude Connector Installation

Go to https://claude.ai/settings/connectors and add a new connector with the following settings:

  • Name: Plex MCP
  • URL: https://plexmcp.example.com/sse
  • Add OAuth Client ID and Client Secret if OAuth is enabled
image

Command Reference

Library Module

Tools for exploring and managing your Plex libraries.

CommandDescriptionParameters
library_listLists all available libraries.None
library_get_statsGets statistics (count, size, types) for a library.library_name
library_refreshTriggers a metadata refresh for a library.library_name
library_scanScans a library for new files.library_name
library_get_detailsGets detailed information about a library.library_name
library_get_recently_addedLists recently added items in a library.library_name, limit: int
library_get_contentsLists all items in a library.library_name, limit: int

Media Module

Tools for searching, inspecting, and editing specific media items.

CommandDescriptionParameters
media_searchSearch for media across all libraries.query, library_name, content_type
media_get_detailsGet comprehensive details for an item.media_title, library_name, media_id
media_edit_metadataUpdate 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_deleteRemove an item from Plex.media_title, library_name, media_id
media_get_artworkRetrieve posters or background artwork.media_title, library_name, art_type: str
media_set_artworkSet artwork from a local path or URL.media_title, library_name, poster_path, poster_url, background_path, background_url
media_list_available_artworkList alternative artwork available for selection.media_title, library_name, art_type

Playlist Module

Manage your personal and shared playlists.

CommandDescriptionParameters
playlist_listList all available playlists.None
playlist_get_contentsList items contained in a playlist.playlist_title, playlist_id
playlist_createCreate a new playlist from items.title, items: List[str]
playlist_deleteDelete a playlist.playlist_title, playlist_id
playlist_add_toAdd media items to a playlist.playlist_title, items: List[str], playlist_id
playlist_remove_fromRemove specific items from a playlist.playlist_title, items: List[str], playlist_id
playlist_editChange playlist title or summary.playlist_title, new_title, new_summary, playlist_id
playlist_upload_posterUpload a custom poster image.playlist_title, image_path, playlist_id
playlist_copy_to_userShare/Copy a playlist to another user.playlist_title, username, playlist_id

Collection Module

Organize movies and shows into collections.

CommandDescriptionParameters
collection_listList collections in a specific library.library_name
collection_createCreate a new collection.library_name, title, items: List[str]
collection_add_toAdd items to an existing collection.library_name, collection_title, items: List[str], collection_id
collection_remove_fromRemove items from a collection.library_name, collection_title, items: List[str], collection_id
collection_editEdit collection metadata and settings.collection_title, collection_id, library_name, new_title, new_sort_title, new_summary, new_content_rating, new_labels, add_labels, remove_labels, poster_path, poster_url, background_path, background_url, new_advanced_settings
collection_deleteDelete a collection.collection_title, collection_id, library_name

User Module

Information about the server owner and shared users.

CommandDescriptionParameters
user_search_usersSearch for shared users.search_term
user_list_all_usersList all users with types and IDs.None
user_get_infoDetailed info for a specific user.username
user_get_on_deckGet "On Deck" items for a user.username
user_get_continue_watchingGet partially watched items to resume.limit: int
user_get_watch_historyRetrieve personal watch history.username, limit, content_type, user_id
user_get_statisticsWatch progress and usage statistics.time_period, username

Sessions Module

Monitor real-time server activity.

CommandDescriptionParameters
sessions_get_activeGet currently playing items and clients.None
sessions_get_media_playback_historyHistory for a specific media item.media_title, library_name, media_id

Server Module

Maintenance and administrative tools.

CommandDescriptionParameters
server_get_plex_logsRetrieve lines from Plex logs.num_lines, log_type, start_line, list_files, search_term
server_get_infoBasic server health and version info.None
server_get_bandwidthBandwidth usage statistics.timespan, lan
server_get_current_resourcesCPU/Memory usage of the host/process.None
server_get_butler_tasksList scheduled maintenance tasks.None
server_get_alertsListen for server notifications/alerts.timeout
server_run_butler_taskManually trigger a Butler task.task_name
server_empty_trashEmpty trash for libraries.library_name
server_optimize_databaseRun database optimization.None
server_clean_bundlesClean up unused media bundles.None

Client Module

Control playback and navigation on Plex clients.

CommandDescriptionParameters
client_listList all available playback clients.include_details: bool, active_only: bool
client_get_detailsDetailed info for a client.client_name, client_id
client_get_timelinesCurrent playback state/trackers.client_name, client_id
client_start_playbackStart playing a media item on a client.media_title, client_name, rating_key, offset, library_name, use_external_player
client_control_playbackPlay, Pause, Stop, Seek, Skip.client_name, action, offset, client_id
client_navigateSend remote control navigation commands.client_name, command, client_id
client_set_streamsChanges audio or subtitle tracks.client_name, audio_stream_id, subtitle_stream_id, client_id

Remote Access & OAuth

The Plex MCP Server can be integrated with remote platforms like Claude.ai via SSE and optional OAuth 2.1. This allows you to talk to your MCP server directly from the Claude interface from anywhere.

Enabling OAuth

  1. Set MCP_OAUTH_ENABLED=true in your environment.
  2. Configure MCP_OAUTH_ISSUER (e.g., your OAuth provider URL).
  3. Set MCP_SERVER_URL to your public-facing URL.
  4. Configure your client to use your OAuth provider Client ID and Secret

Discovery Endpoints

When OAuth is active, the following standard endpoints are exposed:

  • /.well-known/oauth-protected-resource
  • /.well-known/oauth-authorization-server

Response Formats

All tools return information in JSON format for consistent parsing.

Success Example

{
  "status": "success",
  "data": {
    "title": "Inception",
    "year": 2010,
    "rating": 8.8
  }
}

Error Example

{
  "status": "error",
  "message": "Library 'Missing' not found."
}

Multiple Matches

If an operation finds multiple items with the same name, it returns a list of specific identifiers:

[
  {
    "title": "The Office",
    "id": 123,
    "type": "show",
    "year": 2005
  },
  {
    "title": "The Office",
    "id": 456,
    "type": "show",
    "year": 1995
  }
]

Troubleshooting OAuth

  • 401 Unauthorized: Ensure your MCP_OAUTH_ISSUER exactly matches the issuer URL in your identity provider (including trailing slashes).
  • Public URL: MCP_SERVER_URL must be reachable by the client (e.g., plexmcp.example.com) and should use HTTPS.
  • Redirect URIs: For Claude.ai, the redirect URI in your provider must be https://claude.ai/api/mcp/auth_callback.
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Vibe Prospecting MCPVibe Prospecting MCP
Vibe Prospecting MCP
Connect Claude to +800M contacts, +150M companies. Find & Enrich leads in chat.
Try For Free →
Categories
Automation & WorkflowsData & AnalyticsMedia & Entertainment
UpdatedDec 15, 2025
View on GitHub

Related Automation & Workflows MCP Servers

View all →
n8n Workflow Builder

makafeli/n8n-workflow-builder

AI assistant integration for n8n workflow automation through Model Context Protocol (MCP). Connect Claude Desktop, ChatGPT, and other AI assistants to n8n for natural language workflow management.
519
N8N

illuminaresolutions/n8n-mcp-server

MCP server implementation for n8n workflow automation
120
Make Mcp

danishashko/make-mcp

Unofficial MCP server for Make.com automation - build, validate & deploy scenarios via AI
5
n8n Manager MCP

lukisch/n8n-manager-mcp

MCP server for n8n workflow management -- view, create, sync and manage workflows via AI.
1
Airflow

io.github.us-all/airflow

Airflow MCP — list DAGs/runs/task instances, tail logs, trigger and clear (write-gated)
Mcp Workflow

io.github.infoinlet-marketplace/mcp-workflow

Workflow automation for AI agents — browse 125 connectors + 234 templates, run via FluxTurn.