TikTok / Social Commerce
TikTok Video Download Url MCP Tool
Resolve TikTok video URLs to return no-watermark/watermarked download addresses, playback addresses, and cover image addresses for saving promotional video assets or offline analysis.
MCP tool name
nexscope_tiktok_video_download_urlEquivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/tiktok-video-download-url/runJSON-RPC method
tools/callAuthentication
Send the user API key as a bearer token on every MCP JSON-RPC request.
Authorization: Bearer nk_xxxxxxxxxxxxxxxxxIf authentication is missing or invalid, ask the user to open API Access and copy a valid key before calling this tool.
Call this MCP tool
Use tools/call with the MCP tool name below. The arguments object should match the table on this page.
{
"jsonrpc": "2.0",
"id": "tiktok-video-download-url-1",
"method": "tools/call",
"params": {
"name": "nexscope_tiktok_video_download_url",
"arguments": {
"url": "https://www.tiktok.com/@zachking/video/6768504823336815877"
}
}
}REST API equivalent
POST /api/skill-api/v1/runhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/tiktok-video-download-url/runCanonical detail URL
https://www.nexscope.ai/mcp-map/tiktok-video-download-urlArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
url | string | required | TikTok video URL, supports two formats: https://vt.tiktok.com/xxx short link or https://www.tiktok.com/@user/video/xxx full link. Max length 1000 Example: https://www.tiktok.com/@zachking/video/6768504823336815877 |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Meaning |
|---|---|---|---|
noWatermarkDownloadUrl | string | optional | Video download URL (no watermark). Not all videos return this: some videos omit this field, in which case no-watermark download is unavailable Example: https://example.com/image.jpg |
downloadUrl | string | optional | Video download URL (with watermark). Not all videos return this: omitted or present together with the no-watermark URL Example: https://example.com/image.jpg |
playUrl | string | optional | Video play URL. When download URLs are absent, this serves as a fallback for playback/preview Example: https://example.com/image.jpg |
coverUrl | string | optional | Video cover image URL (static) Example: https://example.com/image.jpg |
dynamicCoverUrl | string | optional | Video dynamic cover URL Example: https://example.com/image.jpg |
videoId | string | optional | Video ID Example: example-id |
columns | array | optional | Render column definitions (field metadata: field/title/cellType/filterable/sortable, for frontend table rendering) Example: [] |
type | string | optional | Render style (e.g., tableListWorkbenches) Example: {} |
costToken | integer | optional | Token cost Example: 1 |
errcode | integer | optional | Business code, 200 indicates success Example: 1 |
errmsg | string | optional | Business message, ok on success Example: {} |
code | string | optional | Provider-specific status code. Example: {} |
msg | string | optional | Provider-specific status message. Example: {} |
message | string | optional | Provider-specific message. Example: {} |
title | string | optional | Provider-specific response title. Example: {} |
sourceType | string | optional | Provider-specific source platform type. Example: {} |
sourceTool | string | optional | Provider-specific source tool name. Example: {} |
costTime | integer | optional | Execution time reported by the upstream provider. Example: {} |
page | integer | optional | Current page returned by the upstream provider. Example: {} |
pageSize | integer | optional | Page size returned by the upstream provider. Example: {} |
pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. Example: {} |
totalPage | integer | optional | Total page count returned by the upstream provider. Example: {} |
dataSnapshotMonth | string | optional | Data snapshot month returned by the upstream provider. Example: {} |
Examples
Example arguments
{
"url": "https://www.tiktok.com/@zachking/video/6768504823336815877"
}Example structuredContent
{
"noWatermarkDownloadUrl": "https://example.com/image.jpg",
"downloadUrl": "https://example.com/image.jpg",
"playUrl": "https://example.com/image.jpg",
"coverUrl": "https://example.com/image.jpg",
"dynamicCoverUrl": "https://example.com/image.jpg",
"videoId": "example-id",
"columns": [],
"costToken": 1,
"errcode": 1
}