zapcap_mcp_upload_video_by_url
Upload video files to the ZapCap platform by providing a direct URL, simplifying media integration and processing within the MCP server.
Instructions
Upload video by URL to ZapCap
Input Schema
Name | Required | Description | Default |
---|---|---|---|
request | Yes |
Input Schema (JSON Schema)
{
"$defs": {
"UploadVideoByUrl": {
"properties": {
"url": {
"description": "URL to video file",
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "UploadVideoByUrl",
"type": "object"
}
},
"properties": {
"request": {
"$ref": "#/$defs/UploadVideoByUrl"
}
},
"required": [
"request"
],
"title": "zapcap_mcp_upload_video_by_urlArguments",
"type": "object"
}