本项目是一个基于 FastMCP 的全网短视频去水印解析服务,支持多平台视频分享链接的解析,自动提取视频真实地址及相关信息。 适用于需要批量解析、去水印、采集短视频的场景。本项目还支持视频内容文本提取功能,可以通过语音识别将视频内容转为文本。
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"yby6-crawling-short-video-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
本项目是一个基于 FastMCP 的全网短视频去水印解析服务,支持多平台视频分享链接的解析,自动提取视频真实地址及相关信息。 适用于需要批量解析、去水印、采集短视频的场景。本项目还支持视频内容文本提取功能,可以通过语音识别将视频内容转为文本。
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in browser / entertainment
Browser automation with Puppeteer for web scraping and testing
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
MCP server for Firecrawl — search, scrape, and interact with the web. Supports both cloud and self-hosted instances. Features include web search, scraping, page interaction, batch processing, and LLM-powered content analysis.
The official MCP Server for the Mux API
MCP Security Weekly
Get CVE alerts and security updates for Yby6 Crawling Short Video Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
本项目是一个基于 FastMCP 的全网短视频去水印解析服务,支持多平台视频分享链接的解析,自动提取视频真实地址及相关信息。
适用于需要批量解析、去水印、采集短视频的场景。本项目还支持视频内容文本提取功能,可以通过语音识别将视频内容转为文本。
目前支持以下短视频平台的解析:
crawling-short-video-mcp/
├── yby6_video_mcp_server/
│ ├── server.py # 主服务入口
│ ├── functionality/ # 各平台解析功能模块
│ │ ├── base.py # 基础类和枚举定义
│ │ ├── douyin.py # 抖音解析实现
│ │ ├── kuaishou.py # 快手解析实现
│ │ ├── ... # 其他平台实现
│ │ └── video_processor.py # 视频处理和文本提取
│ └── utils/ # 工具函数
├── Dockerfile.base # 基础镜像构建文件
├── Dockerfile.mcp # MCP服务镜像构建文件
├── requirements.txt # 依赖包列表
├── pyproject.toml # 项目配置和元数据
└── README.md # 项目说明
Ubuntu/Debian:
sudo apt update
sudo apt install ffmpeg
CentOS/RHEL:
sudo yum install epel-release
sudo yum install ffmpeg ffmpeg-devel
macOS:
brew install ffmpeg
Windows:
C:\ffmpegC:\ffmpeg\bin验证安装:
ffmpeg -version
# 安装最新版本
pip install -i https://pypi.org/simple yby6-video-mcp-server
# 或指定版本安装
pip install -i https://pypi.org/simple yby6-video-mcp-server==1.0.2
安装完成后,可以通过以下命令验证安装:
yby6_video_mcp_server --version
"yby6_video_mcp_server": {
"command": "uv",
"args": ["yby6_video_mcp_server"],
"env": {
"API_KEY": "前往获取免费apikey: https://cloud.siliconflow.cn/i/tbvUltCF"
}
}
克隆本项目
git clone https://github.com/yangbuyiya/yby6-crawling-short-video-mcp.git
cd yby6-crawling-short-video-mcp
安装依赖
推荐使用 Python 3.10+,并建议使用虚拟环境:
macOS/Linux:
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
Windows:
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
本项目提供了 Docker 支持, 快速部署运行
运行容器 拉取镜像 sse 模式
docker run -d -p 8637:8637 registry.cn-hangzhou.aliyuncs.com/yby6/yby6_video_mcp_server:1.0.2
可以通过以下命令快速构建部署:
构建基础镜像(包含 FFmpeg 和 Python 环境)
docker build -t ffmpeg-python-base:1.0.2 -f Dockerfile.base .
构建 MCP 服务镜像
docker build -t yby6-video-mcp:latest -f Dockerfile.mcp .
运行容器
docker run -d -p 8637:8637 yby6-video-mcp:latest
// pypi 拉取运行
"yby6_video_mcp_server": {
"command": "uv",
"args": ["yby6_video_mcp_server"],
"env": {
"API_KEY": "sk-xcazqbgbnoagddpyaorhqhioxazvqdtednppksiqaotjsboe"
}
},
// 从源码运行
"yby6_video_mcp_server": {
"command": "uv",
"args": [
"--directory"
... [View full README on GitHub](https://github.com/yangbuyiya/yby6-crawling-short-video-mcp#readme)