manifest.json•1.53 kB
{
"manifest_version": "0.2",
"name": "mcp-youtube-transcript",
"display_name": "YouTube Transcript MCP Server",
"version": "0.5.4",
"description": "MCP server retrieving transcripts of YouTube videos",
"author": {
"name": "Junpei Kawamoto",
"email": "kawamoto.junpei.s64@kyoto-u.jp",
"url": "https://github.com/jkawamoto"
},
"homepage": "https://github.com/jkawamoto/mcp-youtube-transcript",
"documentation": "https://github.com/jkawamoto/mcp-youtube-transcript",
"support": "https://github.com/jkawamoto/mcp-youtube-transcript/issues",
"server": {
"type": "python",
"entry_point": "src/mcp_youtube_transcript/__main__.py",
"mcp_config": {
"command": "uvx",
"args": [
"--from",
"${__dirname}",
"mcp-youtube-transcript"
],
"env": {
"DEBUG": "${user_config.debug_mode}"
}
}
},
"tools": [
{
"name": "get_transcript",
"description": "Fetches the transcript of a specified YouTube video."
},
{
"name": "get_timed_transcript",
"description": "Fetches the transcript of a specified YouTube video with timestamps."
},
{
"name": "get_video_info",
"description": "Fetches the metadata of a specified YouTube video."
}
],
"compatibility": {
"runtimes": {
"python": ">=3.10"
}
},
"keywords": [
"youtube"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jkawamoto/mcp-youtube-transcript"
}
}