npm @drantoniou/uploadcheck-mcpstdioMITupdated 1mo ago
Your agent can generate video. It can't tell you the audio cut out at 0:08, a frame froze at the stitch seam, or the captions are cropped. UploadCheck can — and hands back the exact timestamps to fix.
uploadcheck 能做什么?
🎬 UploadCheck MCP
The quality gate between your AI and "publish".
Your agent can generate video. It can't tell you the audio cut out at 0:08, a frame froze at the stitch seam, or the captions are cropped. UploadCheck can — and hands back the exact timestamps to fix.
For anyone whose agent, pipeline, or editor produces media that ships to real people — AI-video pipelines, Shorts/Reels, podcasts, client deliverables.
The problem
An agent that writes code can run the tests. An agent that renders a video has no idea whether it's broken.
So the broken export ships: silence where narration should be, a frozen frame where two clips were stitched, lips out of sync, captions clipped by the platform UI, loudness well off target. Somebody notices in the comments.
UploadCheck is the check your agent calls before it publishes. Point it at the finished file. It returns PASS, WATCH, or BLOCK with per-flag timestamps and machine-actionable fixes — so the agent repairs only the flagged span and re-checks, instead of guessing or shipping.
Install
npx -y @drantoniou/uploadcheck-mcp
claude mcp add --env UPLOADCHECK_API_BASE_URL=https://api.uploadcheck.app \
--env UPLOADCHECK_API_KEY=YOUR_KEY \
--transport stdio --scope user uploadcheck -- npx -y @drantoniou/uploadcheck-mcp
{
"mcpServers": {
"uploadcheck": {
"command": "npx",
"args": ["-y", "@drantoniou/uploadcheck-mcp"],
"env": {
"UPLOADCHECK_API_BASE_URL": "https://api.uploadcheck.app",
"UPLOADCHECK_API_KEY": "YOUR_KEY"
}
}
}
}
codex mcp add uploadcheck \
--env UPLOADCHECK_API_BASE_URL=https://api.uploadcheck.app \
--env UPLOADCHECK_API_KEY=YOUR_KEY \
-- npx -y @drantoniou/uploadcheck-mcp
Get a free key at uploadcheck.app — 40+ gates, 200 checked minutes/month, no card.
Machine-readable install snippets for every client live in mcp-install.json.
Keep your key private. It's a secret bearer token tied to your plan minutes. Put it in your personal MCP config — never in a committed file, a shared prompt, or a report.
Use it
Once installed, just ask:
check ./final-cut.mp4 before I upload
The agent calls qc_run_local_file, polls qc_get_job, then reads qc_get_report and shows you the flags with timestamps.
What it checks
40+ automated gates run on every check, including:
| Picture | frozen/looped frames, black frames, canvas fit & pillarboxing, temporal warping, flicker, interlace combing |
| Audio | dead air, clipping, loudness (LUFS) & true peak, loudness range, channel balance, mains hum, dropouts |
| Sync & text | lip/audio drift, caption safe-area, text contrast, cropped or overlapping text |
| Delivery | resolution/codec/frame-rate spec, Shorts/Reels format |
Paid plans add AI "oracle" gates — garbled speech, duplicated faces in AI crowds, narration match.
What it doesn't do: it doesn't tell you whether a clip was AI-generated. It assumes it might be, and checks whether it's clean enough to publish.
Tools
| Tool | What it does |
|---|---|
qc_estimate_cost |
Estimate checked minutes and effective gates before running |
qc_run_local_file |
Check a local export (reads the file, sends it to the hosted API) |
qc_run_video |
Check a YouTube URL, signed URL, upload id, or base64 payload |
qc_get_job |
Poll status, progress, verdict, metered minutes |
qc_get_report |
The finished report: verdict + timestamped flags + evidence |
qc_get_events |
Lifecycle events, so the agent can explain what ran |
qc_get_artifacts |
List generated report artifacts |
qc_get_marker_csv |
Editor marker CSV (drop flags straight into your NLE timeline) |
qc_create_upload_url |
Signed upload URL for larger files |
Pass idempotency_key to qc_run_video when an agent might retry the same asset — the API returns the existing job instead of duplicating the run.
Use profile when you know the media type but don't want to hand-pick gates: auto, shorts, audio, thumbnail, generic_creator_video, and named delivery targets like youtube_shorts, podcast_delivery, broadcast_r128, ai_render_gate. Explicit checks always win.
Environment
export UPLOADCHECK_API_BASE_URL="https://api.uploadcheck.app"
export UPLOADCHECK_API_KEY="<workspace_api_key>"
This package is a thin MCP client over the hosted UploadCheck API — checks run server-side, not on your machine. Small and medium local files can be sent inline (base64) without durable storage; use signed upload URLs for large ones.
Links
- Website & free key — uploadcheck.app
- Docs (API + MCP + full gate reference) — uploadcheck.app/docs
- Signed PASS/BLOCK receipts — uploadcheck.app/docs/receipts
License
MIT — see LICENSE.
安装
把 uploadcheck 添加到你的客户端。选择你正在使用的那个。
claude mcp add uploadcheck-mcp -- npx -y @drantoniou/uploadcheck-mcpcodex mcp add uploadcheck-mcp -- npx -y @drantoniou/uploadcheck-mcpamp mcp add uploadcheck-mcp -- npx -y @drantoniou/uploadcheck-mcp{
"mcpServers": {
"uploadcheck-mcp": {
"command": "npx",
"args": [
"-y",
"@drantoniou/uploadcheck-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"uploadcheck-mcp": {
"command": "npx",
"args": [
"-y",
"@drantoniou/uploadcheck-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"uploadcheck-mcp","command":"npx","args":["-y","@drantoniou/uploadcheck-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"uploadcheck-mcp": {
"command": "npx",
"args": [
"-y",
"@drantoniou/uploadcheck-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"uploadcheck-mcp": {
"command": "npx",
"args": [
"-y",
"@drantoniou/uploadcheck-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"uploadcheck-mcp": {
"command": "npx",
"args": [
"-y",
"@drantoniou/uploadcheck-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"uploadcheck-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@drantoniou/uploadcheck-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"uploadcheck-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@drantoniou/uploadcheck-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @drantoniou/uploadcheck-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
9 个工具
uploadcheck 向已连接的智能体提供 9 个工具。
- qc_estimate_cost
- Estimate checked minutes and effective gates before running
- qc_run_local_file
- Check a local export (reads the file, sends it to the hosted API)
- qc_run_video
- Check a YouTube URL, signed URL, upload id, or base64 payload
- qc_get_job
- Poll status, progress, verdict, metered minutes
- qc_get_report
- The finished report: verdict + timestamped flags + evidence
- qc_get_events
- Lifecycle events, so the agent can explain what ran
- qc_get_artifacts
- List generated report artifacts
- qc_get_marker_csv
- Editor marker CSV (drop flags straight into your NLE timeline)
- qc_create_upload_url
- Signed upload URL for larger files
评分
72 / 100
良好
- 文档25/25
- 维护16/25
- 可信度13/20
- 能力6/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 40 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 9 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 0.1.1最新 | 2026年6月10日 |