@hasdata/youtube-mcp 1.0.2 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,8 @@
|
|
|
4
4
|
|
|
5
5
|
A hosted Model Context Protocol (MCP) server that gives Claude, Cursor, Windsurf and any other MCP client four read-only YouTube tools. Search YouTube, read video and channel data, and pull transcripts, with no Google Cloud project and no YouTube Data API key.
|
|
6
6
|
|
|
7
|
+
**1,000 free credits every month, no card required**, which is 100 YouTube calls.
|
|
8
|
+
|
|
7
9
|
```
|
|
8
10
|
https://mcp.hasdata.com/api/mcp?apis=youtube
|
|
9
11
|
```
|
|
@@ -383,11 +385,11 @@ Results that carry data also carry a `requestMetadata.id` worth quoting in suppo
|
|
|
383
385
|
|
|
384
386
|
Every YouTube tool costs **10 credits per successful call**. Response size does not change the price. A full page of search results costs the same as a page with one video.
|
|
385
387
|
|
|
386
|
-
The free
|
|
388
|
+
The free tier is **1,000 credits every month with no card**, which is 100 YouTube calls. It renews with the billing cycle, so a low-volume agent runs on the free tier indefinitely.
|
|
387
389
|
|
|
388
390
|
Paid plans start at **$49 a month** for 200,000 credits, which is 20,000 calls. The unit price falls with volume, from **$2.45 per 1,000 calls** on the entry plan to **$0.99** on Business, **$0.83** on Growth and **$0.75** on the largest [high-volume plans](https://hasdata.com/prices?utm_source=github&utm_medium=syndication&utm_campaign=youtube-mcp).
|
|
389
391
|
|
|
390
|
-
Your plan also sets concurrency. The free
|
|
392
|
+
Your plan also sets concurrency. The free tier allows 1 request at a time, Startup 15, Business 30, Growth 50, and the high-volume plans run from 200 to 1,500. Handle the overflow case defensively in anything unattended, because an agent that fans out will reach the ceiling before you do.
|
|
391
393
|
|
|
392
394
|
A request that comes back non-200 is not billed. A successful call that finds nothing is still a call.
|
|
393
395
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hasdata/youtube-mcp",
|
|
3
3
|
"mcpName": "com.hasdata/youtube",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.5",
|
|
5
5
|
"description": "MCP server for YouTube data (search, video, channel, transcript) through HasData's hosted API. No Google Cloud project, no YouTube Data API key.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|