package.json•860 B
{
"name": "miduconf-mcp",
"version": "1.0.0",
"description": "MCP (Model Context Protocol) server with YouTube API integration tools for searching videos, getting channel information, and retrieving playlist items.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.build.json && chmod 755 ./dist/index.js",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"lint": "echo 'add eslint later'",
"test": "echo 'no tests yet' && exit 0"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"googleapis": "^159.0.0"
},
"devDependencies": {
"@types/node": "^24.3.1",
"tsx": "^4.16.0",
"typescript": "^5.5.0"
}
}