Skip to main content
Glama
CarlDog
by CarlDog

plex-mcp

Plex Media Server를 위한 MCP 서버로, Docker 컨테이너로 패키징되어 있습니다. MCP 클라이언트(Claude Desktop 등)가 사용자의 Plex 라이브러리를 탐색하고 검색할 수 있게 해줍니다.

도구

도구

설명

plex_list_libraries

서버의 모든 라이브러리(섹션) 나열

plex_search

모든 라이브러리에서 검색

plex_recently_added

최근 추가된 항목(섹션별 선택 가능)

plex_on_deck

"온 덱(on deck)" 항목(일부 시청됨 / 다음 재생 항목)

plex_get_item

평점 키(rating key)를 통한 항목의 전체 메타데이터

Related MCP server: Plex Assistant MCP

구성

두 가지 환경 변수가 필요하며, 모두 필수입니다:

변수

예시

참고

PLEX_URL

http://192.168.1.50:32400

Plex 서버의 기본 URL

PLEX_TOKEN

(아래 참조)

Plex 인증 토큰

Plex 토큰을 찾는 방법은 Plex의 인증 토큰 찾기 가이드를 참조하세요.

Docker로 실행

docker build -t plex-mcp .
docker run -i --rm \
  -e PLEX_URL=http://192.168.1.50:32400 \
  -e PLEX_TOKEN=your-token \
  plex-mcp

Claude Desktop과 함께 사용

claude_desktop_config.json에 다음을 추가하세요:

{
  "mcpServers": {
    "plex": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-e", "PLEX_URL",
        "-e", "PLEX_TOKEN",
        "plex-mcp"
      ],
      "env": {
        "PLEX_URL": "http://192.168.1.50:32400",
        "PLEX_TOKEN": "your-token"
      }
    }
  }
}

로컬 개발

npm install
cp .env.example .env  # then edit
PLEX_URL=... PLEX_TOKEN=... npm run dev

보안

  • 컨테이너는 루트가 아닌 사용자(plexmcp)로 실행됩니다.

  • Plex 토큰은 환경 변수를 통해 전달되며, 이미지에 절대 포함하지 마세요.

  • .githooks/pre-commit은 모든 커밋 시 gitleaks를 실행합니다. 클론당 한 번 활성화하세요: git config core.hooksPath .githooks

A
license - permissive license
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
3dResponse time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables users to manage and control their Plex media library through natural language commands in MCP-compatible AI clients. It supports searching content, managing playlists, tracking library statistics, and monitoring live viewing sessions.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    MCP server for reelgrep - browse and search your local video library from any MCP client.
    12
    MIT

View all related MCP servers

Related MCP Connectors

  • Search and browse every MCP server in the Model Context Protocol registry.

  • Remote MCP server for full read/write access to a Zotero library

  • OMDb MCP — IMDB-derived movie / TV / episode data (BYO key)

View all MCP Connectors

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/CarlDog/plex-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server