MCP

TikTok MCP-Server

TikTok erreicht über 1 Milliarde monatliche Nutzer durch Kurzvideos, Livestreams und trendbasierte Entdeckungen, was für kulturelle Relevanz, Creator-Kampagnen und Produkteinführungen entscheidend ist.

MCP Version: 1.0.0 5 MCP-Tools Authentifizierung
TikTok

Basis-URL

https://mcp.pressmonitor.com/mcp

Authentifizierung

MCP-Anrufe verwenden ebenfalls Bearer-Token über JSON-RPC 2.0-Anfragen.

Authorization: Bearer YOUR_TOKEN

post_comments

Beitragskommentare

Argumente

Name Typ Erforderlich Beschreibung
aweme_id string Ja Aweme-ID
count integer Nein Anzahl der zurückzugebenden Ergebnisse
cursor integer Nein Cursor
device_id string Nein Geräte-ID

Code-Beispiele

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

Beitragsdetails

Argumente

Name Typ Erforderlich Beschreibung
aweme_id string Ja Aweme-ID
device_id string Nein Geräte-ID
from string Nein Von

Code-Beispiele

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

Video suchen

Argumente

Name Typ Erforderlich Beschreibung
keyword string Ja Stichwort
count integer Nein Anzahl der zurückzugebenden Ergebnisse
cursor integer Nein Cursor
device_id string Nein Geräte-ID
search_id string Nein Such-ID

Code-Beispiele

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

Benutzerinformationen

Argumente

Name Typ Erforderlich Beschreibung
sec_uid string Nein Sek Uid
unique_id string Nein Einzigartige ID
with_commerce_info string Nein Mit Handelsinformationen

Code-Beispiele

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

Benutzerbeiträge

Argumente

Name Typ Erforderlich Beschreibung
sec_uid string Ja Sek Uid
count integer Nein Anzahl der zurückzugebenden Ergebnisse
cursor integer Nein Cursor
device_id string Nein Geräte-ID
from string Nein Von
with_play_token string Nein Mit Play-Token

Code-Beispiele

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
}'