@unclick/youtube-mcp 0.1.0
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/LICENSE +15 -0
- package/README.md +38 -0
- package/dist/index.js +134 -0
- package/dist/youtube-tool.js +195 -0
- package/package.json +45 -0
- package/server.json +33 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Apache License 2.0
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 UnClick / malamutemayhem
|
|
4
|
+
|
|
5
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
6
|
+
you may not use this file except in compliance with the License.
|
|
7
|
+
You may obtain a copy of the License at
|
|
8
|
+
|
|
9
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
+
|
|
11
|
+
Unless required by applicable law or agreed to in writing, software
|
|
12
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
13
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
14
|
+
See the License for the specific language governing permissions and
|
|
15
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# YouTube MCP by UnClick
|
|
2
|
+
|
|
3
|
+
Search YouTube and get video, channel, playlist, and caption details.
|
|
4
|
+
|
|
5
|
+
> By UnClick. 180+ tools plus persistent agent memory in one install: https://unclick.world
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
Installs straight from GitHub, no npm account needed.
|
|
10
|
+
|
|
11
|
+
```json
|
|
12
|
+
{
|
|
13
|
+
"mcpServers": {
|
|
14
|
+
"youtube": {
|
|
15
|
+
"command": "npx",
|
|
16
|
+
"args": ["-y", "https://github.com/malamutemayhem/unclick/releases/download/standalone-mcps-latest/youtube.tgz"]
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Tools
|
|
23
|
+
|
|
24
|
+
- `youtube_search`
|
|
25
|
+
- `youtube_get_video`
|
|
26
|
+
- `youtube_get_channel`
|
|
27
|
+
- `youtube_list_playlists`
|
|
28
|
+
- `youtube_list_playlist_items`
|
|
29
|
+
- `youtube_get_captions`
|
|
30
|
+
|
|
31
|
+
## Want the rest?
|
|
32
|
+
|
|
33
|
+
This is one connector. [UnClick](https://unclick.world) bundles 180+ tools plus
|
|
34
|
+
persistent cross-session agent memory in a single install.
|
|
35
|
+
|
|
36
|
+
## License
|
|
37
|
+
|
|
38
|
+
Apache-2.0
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// YouTube MCP. Standalone MCP server by UnClick.
|
|
3
|
+
// By UnClick. 180+ tools plus persistent agent memory in one install: https://unclick.world
|
|
4
|
+
//
|
|
5
|
+
// Generated from the UnClick connector by scripts/generate-standalone-mcp.mjs.
|
|
6
|
+
// Edit the connector in the UnClick monorepo, not here.
|
|
7
|
+
import { Server } from "@modelcontextprotocol/sdk/server/index.js";
|
|
8
|
+
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
|
|
9
|
+
import { CallToolRequestSchema, ListToolsRequestSchema, } from "@modelcontextprotocol/sdk/types.js";
|
|
10
|
+
import { youtubeSearch, youtubeGetVideo, youtubeGetChannel, youtubeListPlaylists, youtubeListPlaylistItems, youtubeGetCaptions, } from "./youtube-tool.js";
|
|
11
|
+
const TOOLS = [
|
|
12
|
+
{
|
|
13
|
+
name: "youtube_search",
|
|
14
|
+
description: "Search YouTube for videos, channels, or playlists.",
|
|
15
|
+
inputSchema: {
|
|
16
|
+
type: "object",
|
|
17
|
+
additionalProperties: false,
|
|
18
|
+
properties: {
|
|
19
|
+
api_key: { type: "string" },
|
|
20
|
+
query: { type: "string" },
|
|
21
|
+
type: { type: "string", enum: ["video", "channel", "playlist"], description: "video, channel, or playlist (default: video)" },
|
|
22
|
+
max_results: { type: "number" },
|
|
23
|
+
order: { type: "string", description: "relevance, date, rating, viewCount, title" },
|
|
24
|
+
channel_id: { type: "string" },
|
|
25
|
+
published_after: { type: "string", description: "RFC 3339 datetime, e.g. 2024-01-01T00:00:00Z" },
|
|
26
|
+
region_code: { type: "string" },
|
|
27
|
+
page_token: { type: "string" },
|
|
28
|
+
},
|
|
29
|
+
required: ["api_key", "query"],
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: "youtube_get_video",
|
|
34
|
+
description: "Get metadata, statistics, and content details for a YouTube video.",
|
|
35
|
+
inputSchema: {
|
|
36
|
+
type: "object",
|
|
37
|
+
additionalProperties: false,
|
|
38
|
+
properties: {
|
|
39
|
+
api_key: { type: "string" },
|
|
40
|
+
video_id: { type: "string" },
|
|
41
|
+
},
|
|
42
|
+
required: ["api_key", "video_id"],
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
name: "youtube_get_channel",
|
|
47
|
+
description: "Get metadata and statistics for a YouTube channel.",
|
|
48
|
+
inputSchema: {
|
|
49
|
+
type: "object",
|
|
50
|
+
additionalProperties: false,
|
|
51
|
+
properties: {
|
|
52
|
+
api_key: { type: "string" },
|
|
53
|
+
channel_id: { type: "string" },
|
|
54
|
+
handle: { type: "string", description: "Channel handle without @ (alternative to channel_id)" },
|
|
55
|
+
},
|
|
56
|
+
required: ["api_key"],
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
name: "youtube_list_playlists",
|
|
61
|
+
description: "List playlists belonging to a YouTube channel.",
|
|
62
|
+
inputSchema: {
|
|
63
|
+
type: "object",
|
|
64
|
+
additionalProperties: false,
|
|
65
|
+
properties: {
|
|
66
|
+
api_key: { type: "string" },
|
|
67
|
+
channel_id: { type: "string" },
|
|
68
|
+
max_results: { type: "number" },
|
|
69
|
+
page_token: { type: "string" },
|
|
70
|
+
},
|
|
71
|
+
required: ["api_key", "channel_id"],
|
|
72
|
+
},
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
name: "youtube_list_playlist_items",
|
|
76
|
+
description: "List videos in a YouTube playlist.",
|
|
77
|
+
inputSchema: {
|
|
78
|
+
type: "object",
|
|
79
|
+
additionalProperties: false,
|
|
80
|
+
properties: {
|
|
81
|
+
api_key: { type: "string" },
|
|
82
|
+
playlist_id: { type: "string" },
|
|
83
|
+
max_results: { type: "number" },
|
|
84
|
+
page_token: { type: "string" },
|
|
85
|
+
},
|
|
86
|
+
required: ["api_key", "playlist_id"],
|
|
87
|
+
},
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
name: "youtube_get_captions",
|
|
91
|
+
description: "List available caption tracks for a YouTube video.",
|
|
92
|
+
inputSchema: {
|
|
93
|
+
type: "object",
|
|
94
|
+
additionalProperties: false,
|
|
95
|
+
properties: {
|
|
96
|
+
api_key: { type: "string" },
|
|
97
|
+
video_id: { type: "string" },
|
|
98
|
+
},
|
|
99
|
+
required: ["api_key", "video_id"],
|
|
100
|
+
},
|
|
101
|
+
}
|
|
102
|
+
];
|
|
103
|
+
const HANDLERS = {
|
|
104
|
+
youtube_search: (args) => youtubeSearch(args),
|
|
105
|
+
youtube_get_video: (args) => youtubeGetVideo(args),
|
|
106
|
+
youtube_get_channel: (args) => youtubeGetChannel(args),
|
|
107
|
+
youtube_list_playlists: (args) => youtubeListPlaylists(args),
|
|
108
|
+
youtube_list_playlist_items: (args) => youtubeListPlaylistItems(args),
|
|
109
|
+
youtube_get_captions: (args) => youtubeGetCaptions(args),
|
|
110
|
+
};
|
|
111
|
+
const server = new Server({ name: "io.github.malamutemayhem/youtube", version: "0.1.0" }, { capabilities: { tools: {} } });
|
|
112
|
+
server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: TOOLS }));
|
|
113
|
+
server.setRequestHandler(CallToolRequestSchema, async (req) => {
|
|
114
|
+
const handler = HANDLERS[req.params.name];
|
|
115
|
+
if (!handler) {
|
|
116
|
+
return { content: [{ type: "text", text: `Unknown tool: ${req.params.name}` }], isError: true };
|
|
117
|
+
}
|
|
118
|
+
try {
|
|
119
|
+
const result = await handler((req.params.arguments ?? {}));
|
|
120
|
+
return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }] };
|
|
121
|
+
}
|
|
122
|
+
catch (err) {
|
|
123
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
124
|
+
return { content: [{ type: "text", text: message }], isError: true };
|
|
125
|
+
}
|
|
126
|
+
});
|
|
127
|
+
async function main() {
|
|
128
|
+
const transport = new StdioServerTransport();
|
|
129
|
+
await server.connect(transport);
|
|
130
|
+
}
|
|
131
|
+
main().catch((err) => {
|
|
132
|
+
process.stderr.write(`[youtube-mcp] fatal: ${err instanceof Error ? err.message : String(err)}\n`);
|
|
133
|
+
process.exit(1);
|
|
134
|
+
});
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
// YouTube Data API v3 integration for the UnClick MCP server.
|
|
2
|
+
// Uses the YouTube Data API via fetch - no external dependencies.
|
|
3
|
+
// Users must supply an API key from Google Cloud Console.
|
|
4
|
+
const YT_API_BASE = "https://www.googleapis.com/youtube/v3";
|
|
5
|
+
// ─── API helper ───────────────────────────────────────────────────────────────
|
|
6
|
+
async function ytGet(apiKey, endpoint, params) {
|
|
7
|
+
const query = new URLSearchParams({ ...params, key: apiKey }).toString();
|
|
8
|
+
const res = await fetch(`${YT_API_BASE}/${endpoint}?${query}`);
|
|
9
|
+
const data = await res.json();
|
|
10
|
+
if (!res.ok) {
|
|
11
|
+
const err = data.error;
|
|
12
|
+
const msg = err?.message ?? `HTTP ${res.status}`;
|
|
13
|
+
const code = err?.code ? ` (code ${err.code})` : "";
|
|
14
|
+
throw new Error(`YouTube API error${code}: ${msg}`);
|
|
15
|
+
}
|
|
16
|
+
return data;
|
|
17
|
+
}
|
|
18
|
+
// ─── Auth validation ──────────────────────────────────────────────────────────
|
|
19
|
+
function requireKey(args) {
|
|
20
|
+
const key = String(args.api_key ?? "").trim();
|
|
21
|
+
if (!key)
|
|
22
|
+
throw new Error("api_key is required. Create one at console.cloud.google.com.");
|
|
23
|
+
return key;
|
|
24
|
+
}
|
|
25
|
+
// ─── Operations ───────────────────────────────────────────────────────────────
|
|
26
|
+
export async function youtubeSearch(args) {
|
|
27
|
+
const apiKey = requireKey(args);
|
|
28
|
+
const q = String(args.query ?? "").trim();
|
|
29
|
+
if (!q)
|
|
30
|
+
throw new Error("query is required.");
|
|
31
|
+
const maxResults = Math.min(50, Math.max(1, Number(args.max_results ?? 10)));
|
|
32
|
+
const type = String(args.type ?? "video");
|
|
33
|
+
const params = {
|
|
34
|
+
part: "snippet",
|
|
35
|
+
q,
|
|
36
|
+
type,
|
|
37
|
+
maxResults: String(maxResults),
|
|
38
|
+
};
|
|
39
|
+
if (args.order)
|
|
40
|
+
params.order = String(args.order);
|
|
41
|
+
if (args.published_after)
|
|
42
|
+
params.publishedAfter = String(args.published_after);
|
|
43
|
+
if (args.region_code)
|
|
44
|
+
params.regionCode = String(args.region_code);
|
|
45
|
+
if (args.page_token)
|
|
46
|
+
params.pageToken = String(args.page_token);
|
|
47
|
+
if (args.channel_id)
|
|
48
|
+
params.channelId = String(args.channel_id);
|
|
49
|
+
const data = await ytGet(apiKey, "search", params);
|
|
50
|
+
return {
|
|
51
|
+
total_results: data.pageInfo.totalResults,
|
|
52
|
+
next_page_token: data.nextPageToken ?? null,
|
|
53
|
+
items: (data.items ?? []).map((item) => ({
|
|
54
|
+
kind: item.id.kind,
|
|
55
|
+
id: item.id.videoId ?? item.id.channelId ?? item.id.playlistId,
|
|
56
|
+
title: item.snippet.title,
|
|
57
|
+
description: item.snippet.description,
|
|
58
|
+
channel_id: item.snippet.channelId,
|
|
59
|
+
channel_title: item.snippet.channelTitle,
|
|
60
|
+
published_at: item.snippet.publishedAt,
|
|
61
|
+
thumbnail: item.snippet.thumbnails?.medium?.url ?? item.snippet.thumbnails?.default?.url ?? null,
|
|
62
|
+
live_broadcast: item.snippet.liveBroadcastContent,
|
|
63
|
+
})),
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
export async function youtubeGetVideo(args) {
|
|
67
|
+
const apiKey = requireKey(args);
|
|
68
|
+
const videoId = String(args.video_id ?? "").trim();
|
|
69
|
+
if (!videoId)
|
|
70
|
+
throw new Error("video_id is required.");
|
|
71
|
+
const data = await ytGet(apiKey, "videos", {
|
|
72
|
+
part: "snippet,statistics,contentDetails",
|
|
73
|
+
id: videoId,
|
|
74
|
+
});
|
|
75
|
+
const video = data.items?.[0];
|
|
76
|
+
if (!video)
|
|
77
|
+
throw new Error(`Video not found: ${videoId}`);
|
|
78
|
+
return {
|
|
79
|
+
id: video.id,
|
|
80
|
+
title: video.snippet?.title ?? null,
|
|
81
|
+
description: video.snippet?.description ?? null,
|
|
82
|
+
channel_id: video.snippet?.channelId ?? null,
|
|
83
|
+
channel_title: video.snippet?.channelTitle ?? null,
|
|
84
|
+
published_at: video.snippet?.publishedAt ?? null,
|
|
85
|
+
tags: video.snippet?.tags ?? [],
|
|
86
|
+
duration: video.contentDetails?.duration ?? null,
|
|
87
|
+
definition: video.contentDetails?.definition ?? null,
|
|
88
|
+
view_count: video.statistics?.viewCount ?? null,
|
|
89
|
+
like_count: video.statistics?.likeCount ?? null,
|
|
90
|
+
comment_count: video.statistics?.commentCount ?? null,
|
|
91
|
+
};
|
|
92
|
+
}
|
|
93
|
+
export async function youtubeGetChannel(args) {
|
|
94
|
+
const apiKey = requireKey(args);
|
|
95
|
+
const channelId = String(args.channel_id ?? "").trim();
|
|
96
|
+
const forHandle = String(args.handle ?? "").trim();
|
|
97
|
+
if (!channelId && !forHandle)
|
|
98
|
+
throw new Error("Either channel_id or handle is required.");
|
|
99
|
+
const params = { part: "snippet,statistics" };
|
|
100
|
+
if (channelId)
|
|
101
|
+
params.id = channelId;
|
|
102
|
+
if (forHandle)
|
|
103
|
+
params.forHandle = forHandle.startsWith("@") ? forHandle.slice(1) : forHandle;
|
|
104
|
+
const data = await ytGet(apiKey, "channels", params);
|
|
105
|
+
const channel = data.items?.[0];
|
|
106
|
+
if (!channel)
|
|
107
|
+
throw new Error("Channel not found.");
|
|
108
|
+
return {
|
|
109
|
+
id: channel.id,
|
|
110
|
+
title: channel.snippet?.title ?? null,
|
|
111
|
+
description: channel.snippet?.description ?? null,
|
|
112
|
+
custom_url: channel.snippet?.customUrl ?? null,
|
|
113
|
+
published_at: channel.snippet?.publishedAt ?? null,
|
|
114
|
+
subscriber_count: channel.statistics?.subscriberCount ?? null,
|
|
115
|
+
video_count: channel.statistics?.videoCount ?? null,
|
|
116
|
+
view_count: channel.statistics?.viewCount ?? null,
|
|
117
|
+
};
|
|
118
|
+
}
|
|
119
|
+
export async function youtubeListPlaylists(args) {
|
|
120
|
+
const apiKey = requireKey(args);
|
|
121
|
+
const channelId = String(args.channel_id ?? "").trim();
|
|
122
|
+
if (!channelId)
|
|
123
|
+
throw new Error("channel_id is required.");
|
|
124
|
+
const maxResults = Math.min(50, Math.max(1, Number(args.max_results ?? 20)));
|
|
125
|
+
const params = {
|
|
126
|
+
part: "snippet,contentDetails",
|
|
127
|
+
channelId,
|
|
128
|
+
maxResults: String(maxResults),
|
|
129
|
+
};
|
|
130
|
+
if (args.page_token)
|
|
131
|
+
params.pageToken = String(args.page_token);
|
|
132
|
+
const data = await ytGet(apiKey, "playlists", params);
|
|
133
|
+
return {
|
|
134
|
+
total_results: data.pageInfo.totalResults,
|
|
135
|
+
next_page_token: data.nextPageToken ?? null,
|
|
136
|
+
playlists: (data.items ?? []).map((pl) => ({
|
|
137
|
+
id: pl.id,
|
|
138
|
+
title: pl.snippet?.title ?? null,
|
|
139
|
+
description: pl.snippet?.description ?? null,
|
|
140
|
+
channel_id: pl.snippet?.channelId ?? null,
|
|
141
|
+
channel_title: pl.snippet?.channelTitle ?? null,
|
|
142
|
+
published_at: pl.snippet?.publishedAt ?? null,
|
|
143
|
+
item_count: pl.contentDetails?.itemCount ?? null,
|
|
144
|
+
})),
|
|
145
|
+
};
|
|
146
|
+
}
|
|
147
|
+
export async function youtubeListPlaylistItems(args) {
|
|
148
|
+
const apiKey = requireKey(args);
|
|
149
|
+
const playlistId = String(args.playlist_id ?? "").trim();
|
|
150
|
+
if (!playlistId)
|
|
151
|
+
throw new Error("playlist_id is required.");
|
|
152
|
+
const maxResults = Math.min(50, Math.max(1, Number(args.max_results ?? 20)));
|
|
153
|
+
const params = {
|
|
154
|
+
part: "snippet",
|
|
155
|
+
playlistId,
|
|
156
|
+
maxResults: String(maxResults),
|
|
157
|
+
};
|
|
158
|
+
if (args.page_token)
|
|
159
|
+
params.pageToken = String(args.page_token);
|
|
160
|
+
const data = await ytGet(apiKey, "playlistItems", params);
|
|
161
|
+
return {
|
|
162
|
+
total_results: data.pageInfo.totalResults,
|
|
163
|
+
next_page_token: data.nextPageToken ?? null,
|
|
164
|
+
items: (data.items ?? []).map((item) => ({
|
|
165
|
+
id: item.id,
|
|
166
|
+
title: item.snippet?.title ?? null,
|
|
167
|
+
video_id: item.snippet?.resourceId.videoId ?? null,
|
|
168
|
+
position: item.snippet?.position ?? null,
|
|
169
|
+
published_at: item.snippet?.publishedAt ?? null,
|
|
170
|
+
})),
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
export async function youtubeGetCaptions(args) {
|
|
174
|
+
const apiKey = requireKey(args);
|
|
175
|
+
const videoId = String(args.video_id ?? "").trim();
|
|
176
|
+
if (!videoId)
|
|
177
|
+
throw new Error("video_id is required.");
|
|
178
|
+
const data = await ytGet(apiKey, "captions", {
|
|
179
|
+
part: "snippet",
|
|
180
|
+
videoId,
|
|
181
|
+
});
|
|
182
|
+
return {
|
|
183
|
+
count: (data.items ?? []).length,
|
|
184
|
+
captions: (data.items ?? []).map((c) => ({
|
|
185
|
+
id: c.id,
|
|
186
|
+
language: c.snippet.language,
|
|
187
|
+
name: c.snippet.name,
|
|
188
|
+
track_kind: c.snippet.trackKind,
|
|
189
|
+
is_cc: c.snippet.isCC,
|
|
190
|
+
is_auto_synced: c.snippet.isAutoSynced,
|
|
191
|
+
status: c.snippet.status,
|
|
192
|
+
last_updated: c.snippet.lastUpdated,
|
|
193
|
+
})),
|
|
194
|
+
};
|
|
195
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@unclick/youtube-mcp",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"mcpName": "io.github.malamutemayhem/youtube",
|
|
5
|
+
"description": "Search YouTube and get video, channel, playlist, and caption details. By UnClick (https://unclick.world).",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"mcp",
|
|
8
|
+
"model-context-protocol",
|
|
9
|
+
"unclick",
|
|
10
|
+
"youtube",
|
|
11
|
+
"video",
|
|
12
|
+
"search",
|
|
13
|
+
"captions"
|
|
14
|
+
],
|
|
15
|
+
"author": "UnClick (https://unclick.world)",
|
|
16
|
+
"type": "module",
|
|
17
|
+
"bin": {
|
|
18
|
+
"youtube-mcp": "./dist/index.js"
|
|
19
|
+
},
|
|
20
|
+
"main": "./dist/index.js",
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"README.md",
|
|
24
|
+
"server.json"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsc",
|
|
28
|
+
"start": "node dist/index.js",
|
|
29
|
+
"prepublishOnly": "npm run build"
|
|
30
|
+
},
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@modelcontextprotocol/sdk": "^1.15.1"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"typescript": "^5.6.0",
|
|
36
|
+
"@types/node": "^22.0.0"
|
|
37
|
+
},
|
|
38
|
+
"license": "Apache-2.0",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "https://github.com/malamutemayhem/unclick.git",
|
|
42
|
+
"directory": "packages/standalone/youtube-mcp"
|
|
43
|
+
},
|
|
44
|
+
"homepage": "https://unclick.world"
|
|
45
|
+
}
|
package/server.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
|
|
3
|
+
"name": "io.github.malamutemayhem/youtube",
|
|
4
|
+
"title": "YouTube MCP by UnClick",
|
|
5
|
+
"description": "Search YouTube and get video, channel, playlist, and caption details. By UnClick.",
|
|
6
|
+
"version": "0.1.0",
|
|
7
|
+
"websiteUrl": "https://unclick.world",
|
|
8
|
+
"icons": [
|
|
9
|
+
{
|
|
10
|
+
"src": "https://unclick.world/favicon.png",
|
|
11
|
+
"mimeType": "image/png",
|
|
12
|
+
"sizes": [
|
|
13
|
+
"512x512"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"repository": {
|
|
18
|
+
"url": "https://github.com/malamutemayhem/unclick.git",
|
|
19
|
+
"source": "github",
|
|
20
|
+
"subfolder": "packages/standalone/youtube-mcp"
|
|
21
|
+
},
|
|
22
|
+
"packages": [
|
|
23
|
+
{
|
|
24
|
+
"registryType": "npm",
|
|
25
|
+
"identifier": "@unclick/youtube-mcp",
|
|
26
|
+
"version": "0.1.0",
|
|
27
|
+
"runtimeHint": "npx",
|
|
28
|
+
"transport": {
|
|
29
|
+
"type": "stdio"
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
]
|
|
33
|
+
}
|