smithery.yaml•901 B
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- plexToken
- plexServerUrl
properties:
plexToken:
type: string
description: Your Plex authentication token
plexServerUrl:
type: string
description: The URL of your Plex server (e.g., http://192.168.1.100:32400)
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({
command: 'python',
args: ['plex-mcp.py'],
env: {
PLEX_TOKEN: config.plexToken,
PLEX_SERVER_URL: config.plexServerUrl
}
})
exampleConfig:
plexToken: YOUR_PLEX_TOKEN
plexServerUrl: http://your-plex-server:32400