package.json•2.71 kB
{
"name": "yt-transcript-dl-mcp",
"version": "1.2.0",
"type": "module",
"description": "YouTube transcript download MCP server with stdio, SSE, and HTTP support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"yt-transcript-dl-mcp": "dist/bin/server.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"start:multi": "MCP_MULTI_TRANSPORT=true node dist/index.js",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:e2e": "jest tests/e2e",
"test:esm": "jest --config=tests/esm-migration/jest.esm.config.js",
"test:esm-migration": "./tests/esm-migration/run-esm-tests.sh",
"verify:esm": "npm run build && npm run test:esm",
"lint": "eslint src tests --ext .ts,.js",
"lint:fix": "eslint src tests --ext .ts,.js --fix",
"docker:build": "docker build -t yt-transcript-dl-mcp .",
"docker:run": "docker run -p 3000:3000 -p 3001:3001 -p 3002:3002 yt-transcript-dl-mcp",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@types/node": "^20.0.0",
"commander": "^11.1.0",
"cors": "^2.8.5",
"express": "^4.21.2",
"express-rate-limit": "^7.5.1",
"helmet": "^7.2.0",
"node-cache": "^5.1.2",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.23",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsx": "^4.4.0",
"typescript": "^5.3.2"
},
"keywords": [
"youtube",
"transcript",
"mcp",
"server",
"stdio",
"sse",
"http",
"docker"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-username/yt-transcript-dl-mcp.git"
},
"bugs": {
"url": "https://github.com/your-username/yt-transcript-dl-mcp/issues"
},
"homepage": "https://github.com/your-username/yt-transcript-dl-mcp#readme"
}