# YouTube Shorts Scraper & MCP Connector

**Use case:** 

Extract every Short from any channel by name, handle, or URL, with views, likes, comments, upload date & hashtags, plus optional video downloads.

## Input

```json
{
  "channelUrl": "https://www.youtube.com/@tseriesoldisgold",
  "maxShorts": 100,
  "extendedMetadata": false,
  "downloadVideos": false,
  "videoQuality": "audio",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "mcpConnector": "vBTAN0MuQ91rygHp7",
  "deliveryMode": "chunked",
  "mcpTool": "notion-create-pages",
  "mcpArguments": {
    "parent": {
      "page_id": "39fe5ea63f438061a350f652bc6598bd"
    },
    "pages": [
      {
        "properties": {
          "title": "Shorts from {channelName}"
        },
        "content": "{shortsText}"
      }
    ]
  },
  "mcpMessageTemplate": ""
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "channelName": {
    "label": "Channel",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "likeCount": {
    "label": "Likes",
    "format": "number"
  },
  "commentCount": {
    "label": "Comments",
    "format": "number"
  },
  "duration": {
    "label": "Duration (s)",
    "format": "number"
  },
  "uploadDate": {
    "label": "Upload Date",
    "format": "text"
  },
  "downloadStatus": {
    "label": "Download Status",
    "format": "text"
  },
  "videoDownloadUrl": {
    "label": "Download Link",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Shorts Scraper & MCP Connector](https://apify.com/techforce.global/youtube-shorts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/techforce.global/youtube-shorts-scraper) to learn more, explore other use cases, and run it yourself.