MCP

Intelligence YouTube pour médias, recherche et contenu MCP Server

Outils MCP pour YouTube via cloud-google1

URL de base

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

Authentification

Les appels MCP utilisent aussi un jeton Bearer avec des requetes JSON-RPC 2.0.

Authorization: Bearer YOUR_TOKEN

Decouvrir les outils

Commencez par lister les outils exposes par le serveur 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

Call

Appel generique a l API YouTube Data

Arguments

Nom Type Obligatoire Description
path string Non Chemin API sous /youtube/v3
endpoint string Non Chemin API alternatif si path n est pas utilise
method string Non Methode HTTP, GET par defaut

Exemples de code

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

Get Video Details

Obtenir les informations detaillees pour une ou plusieurs videos

Arguments

Nom Type Obligatoire Description
video_ids string Oui IDs de videos YouTube separes par des virgules

Exemples de code

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