MCP
TikTok MCP Server
TikTok reaches more than 1 billion monthly users through short-form video, live streams, and trend-driven discovery, making it important for cultural relevance, creator campaigns, and product discovery.
MCP Version: 1.0.0 5 MCP Tools Authentication
Base URL
https://mcp.pressmonitor.ca/mcp Authentication
MCP calls also use Bearer tokens over JSON-RPC 2.0 requests.
Authorization: Bearer YOUR_TOKEN post_comments
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| aweme_id | string | Yes | |
| count | integer | No | Number of results to return |
| cursor | integer | No | |
| device_id | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "post_comments",
"arguments": {
"aweme_id": "VALUE"
}
},
"id": 1
}' post_detail
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| aweme_id | string | Yes | |
| device_id | string | No | |
| from | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "post_detail",
"arguments": {
"aweme_id": "VALUE"
}
},
"id": 1
}' search_video
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| keyword | string | Yes | |
| count | integer | No | Number of results to return |
| cursor | integer | No | |
| device_id | string | No | |
| search_id | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "search_video",
"arguments": {
"keyword": "VALUE"
}
},
"id": 1
}' user_info
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| sec_uid | string | No | |
| unique_id | string | No | |
| with_commerce_info | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "user_info",
"arguments": {}
},
"id": 1
}' user_posts
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| sec_uid | string | Yes | |
| count | integer | No | Number of results to return |
| cursor | integer | No | |
| device_id | string | No | |
| from | string | No | |
| with_play_token | string | No |
Code Examples
curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "user_posts",
"arguments": {
"sec_uid": "VALUE"
}
},
"id": 1
}'