-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@miller-joe/youtube-mcp",
"version": "0.2.0",
"mcpName": "io.github.miller-joe/youtube-mcp",
"description": "OAuth-authenticated YouTube MCP server for channel owners — edit video metadata, reply to and moderate comments, manage playlists, query channel analytics, and set AI-generated thumbnails via a ComfyUI bridge.",
"license": "MIT",
"author": "Joe Miller <joe@indivision.net> (https://github.com/miller-joe)",
"type": "module",
"main": "./dist/index.js",
"bin": {
"youtube-mcp": "./dist/index.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "tsx --test test/*.test.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.12.0",
"tsx": "^4.7.0",
"typescript": "^5.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miller-joe/youtube-mcp.git"
},
"bugs": {
"url": "https://github.com/miller-joe/youtube-mcp/issues"
},
"homepage": "https://github.com/miller-joe/youtube-mcp#readme",
"keywords": [
"mcp",
"model-context-protocol",
"youtube",
"youtube-api",
"ai-tools",
"comfyui",
"creator-tools",
"automation"
]
}