YouTube MCP Server

by icraft2170
Verified
{ "name": "youtube-data-mcp-server", "version": "1.0.15", "description": "YouTube MCP Server Implementation", "main": "dist/index.js", "type": "module", "bin": { "youtube-data-mcp-server": "./dist/index.js" }, "files": [ "dist", "README.md" ], "scripts": { "start": "node dist/index.js", "dev": "nodemon --exec ts-node --esm ./src/index.ts", "build": "tsc", "clean": "rimraf dist", "prebuild": "npm run clean", "lint": "eslint src/**/*.ts", "test": "jest", "prepare": "npm run build", "postinstall": "chmod +x ./dist/index.js" }, "keywords": [ "mcp", "youtube", "claude", "modelcontextprotocol" ], "author": "Hero", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.7.0", "dotenv": "^16.4.7", "googleapis": "^129.0.0", "pnpm": "^10.6.4", "youtube-captions-scraper": "^2.0.0", "zod": "^3.24.2" }, "devDependencies": { "@types/jest": "^29.5.12", "@types/node": "^18.0.0", "@typescript-eslint/eslint-plugin": "^7.1.0", "@typescript-eslint/parser": "^7.1.0", "eslint": "^8.57.0", "jest": "^29.7.0", "nodemon": "^3.0.0", "rimraf": "^5.0.10", "ts-jest": "^29.1.2", "ts-node": "^10.9.1", "typescript": "^5.0.0" }, "engines": { "node": ">=18.0.0" }, "publishConfig": { "access": "public" } }