Token导航 LogoToken导航TokenDH.com
Jellyseerr MCP Server logo
AI代理stdio官方级别未说明来源级核验

Jellyseerr MCP Server

MCP Server

一个为Jellyseerr设计的MCP服务器,将Jellyseerr API功能暴露为LLM客户端可用的MCP工具。

工具数

0

提示词数

0

GitHub Stars

7

资源数

0
API集成日志记录PythonClaudeClaude DesktopClaude

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

aserper

提供方

aserper

最后核验

2026/5/17 20:20

运行时

Python

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

命令预览

python -m jellyseerr_mcp

详细介绍

Jellyseerr MCP Server

Jellyserr MCP服务器

![Tests](https://github.com/aserper/jellyseerr-mcp/actions/workflows/test.yml) ](https://www.python.org/downloads/) ![License: MIT](README.md#license) ![GHCR](https://github.com/aserper/jellyseerr-mcp/pkgs/container/jellyseerr-mcp)

](https://github.com/aserper/jellyseerr-mcp) ](https://github.com/aserper/jellyseerr-mcp/fork)

Jellyseer的MCP(模型上下文协议)服务器,将Jellyserer API功能公开为LLM客户端可用的MCP工具。它包括丰富多彩的、表情符号形式的日志记录和清晰的控制台输出。

特性

  • 将关键的Jellyserr端点作为MCP工具公开(搜索、请求、获取请求状态等)
  • 具有强大错误处理和超时功能的同步HTTP客户端
  • 丰富多彩、结构化的日志记录,通过Rich with表情符号指示器
  • 通过环境变量进行配置(.env 支持)
  • 与多mcp配置兼容的非阻塞stdio服务器

需求

  • Python 3.10+
  • 包裹在 requirements.txt

设置

  1. 创建并激活virtualenv。
  2. pip install -r requirements.txt
  3. 复制 .env.example.env 并设定你的价值观。
JELLYSEERR_URL=https://your-jellyseerr.example.com
JELLYSEERR_API_KEY=your_api_key_here
JELLYSEERR_TIMEOUT=15

运行MCP服务器

python -m jellyseerr_mcp

您应该看到彩色日志,表明服务器已在stdio上准备就绪。服务器通过stdin/stdout进行通信,使其与Claude Desktop和其他MCP客户端兼容。

码头工人

您可以通过从GitHub容器注册表(GHCR)中提取预构建的映像或自己构建映像来使用Docker运行服务器。

从GHCR中提取

docker pull ghcr.io/aserper/jellyseerr-mcp:latest

本地建设

docker build -t jellyseerr-mcp .

# If you pulled from GHCR:
docker run --rm -it \
  -e JELLYSEERR_URL="https://your-jellyseerr.com" \
  -e JELLYSEERR_API_KEY="your_api_key" \
  ghcr.io/aserper/jellyseerr-mcp:latest

# If you built locally:
docker run --rm -it \
  -e JELLYSEERR_URL="https://your-jellyseerr.com" \
  -e JELLYSEERR_API_KEY="your_api_key" \
  jellyseerr-mcp

多MCP配置

该服务器旨在与多mcp配置无缝协作。示例 mcp.json:

{
  "mcpServers": {
    "jellyseerr": {
      "command": "/path/to/.venv/bin/python",
      "args": ["-m", "jellyseerr_mcp"],
      "env": {
        "JELLYSEERR_URL": "https://your-jellyseerr.example.com",
        "JELLYSEERR_API_KEY": "your_api_key_here"
      }
    }
  }
}

外露工具(初始设置)

  • search_media(query: str) --通过查询在Jellyserr中搜索媒体。
  • request_media(media_id: int, media_type: str) --创建媒体请求。
  • get_request(request_id: int) --获取请求的详细信息/状态。
  • ping() --使用服务器/传输信息进行活体检查。

可以轻松添加更多工具——请参阅 jellyseerr_mcp/server.py.

目录标签

目录标签

API集成日志记录PythonClaudeAPI工具本地部署LLM集成Jellyseerr扩展HTTP客户端

支持客户端

Claude DesktopClaude

接入字段

传输方式(transport,传输协议)

stdio

鉴权方式(authType,认证方式)

none

运行时(runtime,运行环境)

Python

部署方式(deploymentType,部署类型)

remote-capable

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

stdiononeremote-capable

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

来源信息

继续浏览同类 MCP