Platform Intelligence MCP

YouTube MCP Server

YouTube reaches over 2 billion logged-in monthly users across videos, Shorts, live streams, and podcasts, making it important for search visibility, education, brand storytelling, and creator-led demand.

MCP Version: 1.0.0 3 MCP Tools Authentication
YouTube

Base URL

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

Authentication

MCP calls also use Bearer tokens over JSON-RPC 2.0 requests.

Authorization: Bearer YOUR_TOKEN

Discover Tools

Start by listing the tools exposed by the MCP server.

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

Generic YouTube Data API call

Generic YouTube Data API call

Arguments

Name Type Required Description
path string No API path under /youtube/v3
endpoint string No Alternative API path if path is not used
method string No HTTP method, default GET

Code Examples

curl -X POST 'https://mcp.pressmonitor.ca/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 detailed information for one or more videos

Get detailed information for one or more videos

Arguments

Name Type Required Description
video_ids string Yes Comma-separated YouTube video IDs

Code Examples

curl -X POST 'https://mcp.pressmonitor.ca/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"}}}'