package.json•1.89 kB
{
"name": "@jhomen368/overseerr-mcp",
"version": "1.2.3",
"description": "Model Context Protocol (MCP) server for Overseerr - enables AI assistants to search, request, and manage media through your Overseerr instance",
"type": "module",
"author": "jhomen368",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jhomen368/overseerr-mcp.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"overseerr",
"plex",
"media",
"automation",
"ai",
"assistant"
],
"mcp": {
"server": {
"transport": "stdio",
"tools": [
{
"name": "search_media",
"description": "Search for movies, TV shows, or people with optional batch dedupe mode for checking multiple titles at once"
},
{
"name": "request_media",
"description": "Request movies or TV shows with automatic validation and multi-season confirmation"
},
{
"name": "manage_media_requests",
"description": "Manage media requests - list, approve, decline, delete, or get request details"
},
{
"name": "get_media_details",
"description": "Get detailed information about movies or TV shows with flexible detail levels"
}
]
}
},
"bin": {
"overseerr-mcp": "./build/index.js"
},
"files": [
"build/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"express": "^5.1.0"
},
"devDependencies": {
"@types/node": "^24.10.1",
"@types/express": "^5.0.5",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}