Metadata-Version: 2.4
Name: nas-mcp-server
Version: 0.0.4
Summary: MCP server for Plex, Radarr, Overseerr, Bazarr, and Prowlarr
Project-URL: Homepage, https://github.com/matthieurosset/nas-mcp-server
Project-URL: Repository, https://github.com/matthieurosset/nas-mcp-server
Author: Matthieu Rosset
License-Expression: MIT
Keywords: bazarr,mcp,media,nas,overseerr,plex,prowlarr,radarr,subtitles
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Requires-Dist: fastmcp>=2.0.0
Requires-Dist: httpx>=0.27.0
Requires-Dist: python-dotenv>=1.0.0
Description-Content-Type: text/markdown

# NAS MCP Server

MCP server for Plex, Radarr, and Overseerr integration.

## Installation

### Claude Desktop / Claude Code

Add to your MCP configuration:

```json
{
  "mcpServers": {
    "nas-mcp-server": {
      "command": "uvx",
      "args": ["nas-mcp-server"],
      "env": {
        "PLEX_URL": "http://your-nas:32400",
        "PLEX_TOKEN": "your_plex_token",
        "RADARR_URL": "http://your-nas:7878",
        "RADARR_API_KEY": "your_radarr_api_key",
        "OVERSEERR_URL": "http://your-nas:5055",
        "OVERSEERR_API_KEY": "your_overseerr_api_key"
      }
    }
  }
}
```

## Environment Variables

| Variable | Description | Required |
|----------|-------------|----------|
| `PLEX_URL` | Plex server URL | Yes |
| `PLEX_TOKEN` | Plex authentication token | Yes |
| `RADARR_URL` | Radarr server URL | No |
| `RADARR_API_KEY` | Radarr API key | No |
| `OVERSEERR_URL` | Overseerr server URL | No |
| `OVERSEERR_API_KEY` | Overseerr API key | No |

## Features

- **Plex**: Browse your library, get recommendations, check watch status
- **Radarr**: Add/remove movies, monitor downloads
- **Overseerr**: Search actors, view filmographies, request movies

## License

MIT
