-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.44 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@coyasong/youtube-mcp-server",
"version": "1.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"sideEffects": false,
"type": "module",
"bin": {
"youtube-mcp-server": "dist/stdio-server.js",
"youtube-mcp-http": "dist/http-server.js"
},
"mcpName": "io.github.coyaSONG/youtube-research",
"scripts": {
"clean": "rm -rf dist",
"prebuild": "rm -rf dist && mkdir -p dist",
"build": "npm run build:tsc",
"build:tsc": "tsc",
"prepare:mcpb": "npm run build && node scripts/prepare-mcpb.mjs",
"build:mcpb": "npm run prepare:mcpb && mcpb pack .mcpb-stage artifacts/youtube-research-mcp.mcpb",
"test:mcpb": "npm run build:mcpb && node scripts/mcpb-smoke.mjs",
"prepack": "npm run build",
"prepublishOnly": "npm test",
"test": "npm run build && node --test tests/*.test.mjs",
"test:live": "npm run build && node scripts/live-smoke.mjs",
"test:user": "node scripts/virtual-user-smoke.mjs",
"start": "npm run start:http",
"start:http": "node dist/http-server.js",
"dev": "npm run dev:http",
"dev:http": "node --loader ts-node/esm src/http-server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coyaSONG/youtube-mcp-server.git"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"SECURITY.md",
"server.json",
"docs"
],
"keywords": [
"mcp",
"model-context-protocol",
"youtube",
"transcript",
"research",
"citations",
"ai-agents"
],
"author": "coyaSONG",
"license": "MIT",
"bugs": {
"url": "https://github.com/coyaSONG/youtube-mcp-server/issues"
},
"homepage": "https://github.com/coyaSONG/youtube-mcp-server#readme",
"description": "Citation-ready YouTube transcripts, comments, and channel intelligence for AI agents over MCP",
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"cors": "^2.8.5",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"googleapis": "^173.0.0",
"node-cache": "^5.1.2",
"youtubei.js": "^17.2.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@anthropic-ai/mcpb": "2.1.2",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.0",
"@types/node": "^26.1.1",
"ts-node": "^10.9.2",
"typescript": "^7.0.2"
},
"overrides": {
"tmp": "0.2.7"
}
}