AgentHubAgentHub

uploadcheck

MCP ServerMCP Registry官方收录

app.uploadcheck/uploadcheck · v0.1.1

QC videos, podcasts, and clips before upload — timestamped flags with agent-ready repair prompts.

概览

uploadcheck 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "uploadcheck": {
      "command": "npx",
      "args": [
        "-y",
        "@drantoniou/uploadcheck-mcp"
      ],
      "env": {
        "UPLOADCHECK_API_BASE_URL": "<UPLOADCHECK_API_BASE_URL>",
        "UPLOADCHECK_API_KEY": "<UPLOADCHECK_API_KEY>"
      }
    }
  }
}

环境变量

UPLOADCHECK_API_BASE_URL必填

UploadCheck API base URL

UPLOADCHECK_API_KEY必填secret

Workspace API key from your UploadCheck setup email (get one at https://uploadcheck.app/checkout/)

相关资源

统一 Manifest

{
  "id": "app.uploadcheck/uploadcheck",
  "type": "mcp-server",
  "version": "0.1.1",
  "displayName": "uploadcheck",
  "description": "QC videos, podcasts, and clips before upload — timestamped flags with agent-ready repair prompts.",
  "repository": {
    "url": "https://github.com/ajantoniou/uploadcheck-mcp",
    "source": "github"
  },
  "homepage": "https://uploadcheck.app",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@drantoniou/uploadcheck-mcp",
        "version": "0.1.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "UPLOADCHECK_API_BASE_URL",
            "description": "UploadCheck API base URL",
            "isRequired": true
          },
          {
            "name": "UPLOADCHECK_API_KEY",
            "description": "Workspace API key from your UploadCheck setup email (get one at https://uploadcheck.app/checkout/)",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "app.uploadcheck/uploadcheck",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/app.uploadcheck%2Fuploadcheck/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
uploadcheck — MCP Server 安装与配置 · AgentHub