MCP

틱톡 MCP 서버

틱톡은 짧은 동영상, 라이브 스트림 및 트렌드 기반 발견을 통해 월 10억 명 이상의 사용자를 도달시키며, 문화적 관련성, 크리에이터 캠페인 및 제품 발견에 중요한 플랫폼입니다.

MCP 버전: 1.0.0 5 MCP 도구 인증
틱톡

기본 URL

https://mcp.pressmonitor.com/mcp

인증

MCP 호출은 JSON-RPC 2.0 요청을 통해 Bearer 토큰도 사용합니다.

Authorization: Bearer YOUR_TOKEN

post_comments

게시물 댓글

인수

이름 유형 필수 설명
aweme_id string Aweme ID
count integer 아니요 반환할 결과 수
cursor integer 아니요 커서
device_id string 아니요 디바이스 ID

코드 예제

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

게시물 상세

인수

이름 유형 필수 설명
aweme_id string Aweme ID
device_id string 아니요 디바이스 ID
from string 아니요 시작 위치

코드 예제

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

동영상 검색

인수

이름 유형 필수 설명
keyword string 키워드
count integer 아니요 반환할 결과 수
cursor integer 아니요 커서
device_id string 아니요 디바이스 ID
search_id string 아니요 검색 ID

코드 예제

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

사용자 정보

인수

이름 유형 필수 설명
sec_uid string 아니요 보안 Uid
unique_id string 아니요 고유 ID
with_commerce_info string 아니요 상거래 정보 포함

코드 예제

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

사용자 게시물

인수

이름 유형 필수 설명
sec_uid string 보안 Uid
count integer 아니요 반환할 결과 수
cursor integer 아니요 커서
device_id string 아니요 디바이스 ID
from string 아니요 시작 위치
with_play_token string 아니요 재생 토큰 포함

코드 예제

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