플랫폼 인텔리전스 MCP

유튜브 MCP 서버

유튜브는 매월 20억 명 이상의 로그인 사용자에게 도달하며, 비디오, 쇼츠, 라이브 스트림, 팟캐스트를 통해 검색 가시성, 교육, 브랜드 스토리텔링 및 크리에이터 주도 수요에 중요합니다.

MCP 버전: 1.0.0 3 MCP 도구 인증
유튜브

기본 URL

https://mcp.pressmonitor.com/youtube/v1

인증

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

Authorization: Bearer YOUR_TOKEN

도구 찾기

MCP 서버에서 노출된 도구를 나열해 보세요.

curl -X POST \ 'https://mcp.pressmonitor.com/youtube/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
tool call

일반 YouTube 데이터 API 호출

일반 YouTube 데이터 API 호출

인수

이름 유형 필수 설명
path string 아니요 /youtube/v3 아래의 API 경로
endpoint string 아니요 경로를 사용하지 않을 경우 대체 API 경로
method string 아니요 HTTP 메서드, 기본값 GET

코드 예제

curl -X POST \ 'https://mcp.pressmonitor.com/youtube/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"call","arguments":{"path":"SOME_STRING_VALUE","endpoint":"SOME_STRING_VALUE","method":"SOME_STRING_VALUE"}}}'
tool get_video_details

하나 이상의 동영상에 대한 상세 정보 가져오기

하나 이상의 동영상에 대한 상세 정보 가져오기

인수

이름 유형 필수 설명
video_ids string 쉼표로 구분된 YouTube 동영상 ID

코드 예제

curl -X POST \ 'https://mcp.pressmonitor.com/youtube/v1' \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer YOUR_TOKEN' \ -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_video_details","arguments":{"video_ids":"SOME_STRING_VALUE"}}}'