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_url
Equivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/tiktok-video-download-url/run
JSON-RPC method
tools/call

Authentication

Send the user API key as a bearer token on every MCP JSON-RPC request.

Authorization: Bearer nk_xxxxxxxxxxxxxxxxx

If 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/run
Canonical detail URL
https://www.nexscope.ai/mcp-map/tiktok-video-download-url

Arguments

NameTypeRequiredMeaning
urlstringrequired
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.

NameTypeRequiredMeaning
noWatermarkDownloadUrlstringoptional
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
downloadUrlstringoptional
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
playUrlstringoptional
Video play URL. When download URLs are absent, this serves as a fallback for playback/preview
Example: https://example.com/image.jpg
coverUrlstringoptional
Video cover image URL (static)
Example: https://example.com/image.jpg
dynamicCoverUrlstringoptional
Video dynamic cover URL
Example: https://example.com/image.jpg
videoIdstringoptional
Video ID
Example: example-id
columnsarrayoptional
Render column definitions (field metadata: field/title/cellType/filterable/sortable, for frontend table rendering)
Example: []
typestringoptional
Render style (e.g., tableListWorkbenches)
Example: {}
costTokenintegeroptional
Token cost
Example: 1
errcodeintegeroptional
Business code, 200 indicates success
Example: 1
errmsgstringoptional
Business message, ok on success
Example: {}
codestringoptional
Provider-specific status code.
Example: {}
msgstringoptional
Provider-specific status message.
Example: {}
messagestringoptional
Provider-specific message.
Example: {}
titlestringoptional
Provider-specific response title.
Example: {}
sourceTypestringoptional
Provider-specific source platform type.
Example: {}
sourceToolstringoptional
Provider-specific source tool name.
Example: {}
costTimeintegeroptional
Execution time reported by the upstream provider.
Example: {}
pageintegeroptional
Current page returned by the upstream provider.
Example: {}
pageSizeintegeroptional
Page size returned by the upstream provider.
Example: {}
pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
Example: {}
totalPageintegeroptional
Total page count returned by the upstream provider.
Example: {}
dataSnapshotMonthstringoptional
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
}