技能详情(站内镜像,无评论)
作者:Alone @al-one
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v1.0.2
统计:⭐ 4 · 1.2k · 2 current installs · 2 all-time installs
⭐ 4
安装量(当前) 2
🛡 VirusTotal :可疑 · OpenClaw :可疑
Package:al-one/mcp-vods
安全扫描(ClawHub)
- VirusTotal :可疑
- OpenClaw :可疑
OpenClaw 评估
The skill's instructions largely match its stated purpose, but it runs arbitrary npm packages at runtime via npx, references undeclared environment variables for controlling local TVs, and thus has a mismatched/incomplete metadata surface and a runtime code-fetch risk you should understand before installing.
目的
The name/description (search streaming sources and cast to TVs) aligns with the runtime commands (mcporter/uvx calls and mitv/tvbox play commands). However the registry metadata does not declare the optional environment variables (MITV_LOCAL_IP, MITV_LIST_CFG, TVBOX_LOCAL_IP, TVBOX_LIST_CFG) that the SKILL.md explicitly requires for casting — this is an inconsistency the author should have declared.
说明范围
SKILL.md tells the agent to run npx -y mcporter ... 'uvx mcp-vods' which will fetch and execute code from npm at runtime, and to send media URLs to local device IPs (Xiaomi / Android TV). That means the agent will: (a) download/execute code from the network each run, and (b) communicate with local network devices using addresses supplied via env vars. The instructions also reference env vars not present in the registry metadata.
安装机制
There is no install spec; instead the skill relies on npx -y to fetch and execute mcporter/mcp-vods on demand. Using npx implies transient downloading and running of remote packages from the npm registry each time — this is higher risk than pure instruction-only behavior because arbitrary code will be executed at runtime.
证书
Registry declares no required env vars, but SKILL.md expects MITV_LOCAL_IP / MITV_LIST_CFG and TVBOX_LOCAL_IP / TVBOX_LIST_CFG to enable casting. The skill accesses env vars that are not declared in the metadata (a mismatch). Those env vars control local network targets (TV IPs) — sensitive in that they enable contacting devices on the user's LAN.
持久
always:false and no install-time persistence or modification of other skills is requested. The skill does not request permanent/system-level privileges in the metadata.
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「追剧/追番技能, 支持投屏到电视」。简介:用于追剧/追番的技能,为AI提供搜索影视播放地址的能力,并支持在小米电视上直接播放。当用户想搜索影视、动漫、短剧、综艺等节目信息或更新进度时使用此技能。。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/al-one/mcp-vods/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
name: mcp-vods
description: 用于追剧/追番的技能,为AI提供搜索影视播放地址的能力,并支持在小米电视上直接播放。当用户想搜索影视、动漫、短剧、综艺等节目信息或更新进度时使用此技能。
homepage: https://github.com/aahl/mcp-vods
metadata: { "openclaw": { "emoji": "📺", "requires": {"bins": ["npx", "uvx"] } } }
---
# 追剧/追番技能
通过`npx -y mcporter`连接`mcp-vods`在多个源站中搜索影视、动漫、短剧、综艺等节目信息或更新进度。
并支持通过配置可选的电视IP环境变量,实现投屏到电视上播放。
## 搜索工具
该工具需要在多个源站搜索,比较耗时,需要更多的超时时间,如果遇到超时,可以重新尝试。
- `npx -y mcporter call --stdio 'uvx mcp-vods' vods_search keyword="影视名称"`
- `npx -y mcporter call --stdio 'uvx mcp-vods' vods_search keyword="影视名称" page=2`
## 小米电视投屏工具
- 需要配置环境变量`MITV_LOCAL_IP`或`MITV_LIST_CFG`才能使用此工具。
- `npx -y mcporter call --stdio 'uvx mcp-vods' mitv_play_media url="影视URL" addr="小米电视IP"`
## 安卓电视投屏工具
- 需要配置环境变量`TVBOX_LOCAL_IP`或`TVBOX_LIST_CFG`并在电视上安装TvBox才能使用此工具。
- `npx -y mcporter call --stdio 'uvx mcp-vods' tvbox_play_media url="影视URL" addr="安卓电视IP"`
## 获取工具列表
- `npx -y mcporter list --stdio 'uvx mcp-vods' --schema --all-parameters`
为了更好的兼容性,执行命令时使用`npx -y mcporter`替代`mcporter`。