MCP
TikTok MCP Server
TikTok हर महीने 1 अरब से अधिक उपयोगकर्ताओं तक पहुंचता है, जो शॉर्ट-फॉर्म वीडियो, लाइव स्ट्रीम और ट्रेंड-प्रेरित खोज के माध्यम से सांस्कृतिक प्रासंगिकता के लिए महत्वपूर्ण है।
MCP Version: 1.0.0 5 MCP Tools Authentication
Base URL
https://mcp.pressmonitor.com/mcp Authentication
MCP calls use Bearer tokens over JSON-RPC 2.0.
Authorization: Bearer YOUR_TOKEN post_comments
पोस्ट टिप्पणियाँ
Arguments
| Name | Type | Required | Description |
|---|---|---|---|
| aweme_id | string | Yes | Aweme आईडी |
| count | integer | No | वापस लौटाने के लिए परिणामों की संख्या |
| cursor | integer | No | कर्सर |
| device_id | string | No | डिवाइस आईडी |
Code Examples
curl -X POST "https://mcp.pressmonitor.com/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 | Aweme आईडी |
| device_id | string | No | डिवाइस आईडी |
| from | string | No | से |
Code Examples
curl -X POST "https://mcp.pressmonitor.com/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 | वापस लौटाने के लिए परिणामों की संख्या |
| cursor | integer | No | कर्सर |
| device_id | string | No | डिवाइस आईडी |
| search_id | string | No | खोज आईडी |
Code Examples
curl -X POST "https://mcp.pressmonitor.com/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.com/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 | वापस लौटाने के लिए परिणामों की संख्या |
| cursor | integer | No | कर्सर |
| device_id | string | No | डिवाइस आईडी |
| from | string | No | से |
| with_play_token | string | No | प्ले टोकन के साथ |
Code Examples
curl -X POST "https://mcp.pressmonitor.com/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
}'