scrapecreators_youtube_channel
Pack: scrapecreators · Endpoint: https://gateway.pipeworx.io/scrapecreators/mcp
List videos for a YouTube channel with view counts, publish dates, durations, and URLs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
channelId | string | no | YouTube channel ID, e.g. “UC-9-kyTW8ZkZNDHQJ6FgpwQ” |
handle | string | no | YouTube channel handle (alternative to channelId), e.g. “ThePatMcAfeeShow” |
sort | string | no | Sort order: “latest” or “popular” (optional) |
continuationToken | string | no | Pagination token returned as continuationToken in a previous response (optional) |
includeExtras | string | no | ”true” to include likes, comments, and description per video (optional) |
_apiKey | string | yes | ScrapeCreators API key (sign up at https://app.scrapecreators.com) |
Example call
Arguments
{
"handle": "ThePatMcAfeeShow",
"_apiKey": "your-scrapecreators-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/scrapecreators/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"scrapecreators_youtube_channel","arguments":{"handle":"ThePatMcAfeeShow","_apiKey":"your-scrapecreators-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('scrapecreators_youtube_channel', {
"handle": "ThePatMcAfeeShow",
"_apiKey": "your-scrapecreators-api-key"
});
More examples
{
"channelId": "UC-9-kyTW8ZkZNDHQJ6FgpwQ",
"sort": "latest",
"includeExtras": "true",
"_apiKey": "your-scrapecreators-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"scrapecreators": {
"url": "https://gateway.pipeworx.io/scrapecreators/mcp"
}
}
}
See Getting Started for client-specific install steps.