https://github.com/jkawamoto/mcp-youtube-transcript
MCP server retrieving transcripts of YouTube videos
https://github.com/jkawamoto/mcp-youtube-transcript
mcp-server python
Last synced: 4 months ago
JSON representation
MCP server retrieving transcripts of YouTube videos
- Host: GitHub
- URL: https://github.com/jkawamoto/mcp-youtube-transcript
- Owner: jkawamoto
- License: mit
- Created: 2025-02-08T02:49:22.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-02-16T22:01:33.000Z (4 months ago)
- Last Synced: 2025-02-16T22:26:24.929Z (4 months ago)
- Topics: mcp-server, python
- Language: Python
- Homepage:
- Size: 50.8 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- mcp-index - Youtube Transcript - Retrieve transcripts from YouTube videos. (Document Processing)
README
# Youtube Transcript MCP Server
[](https://github.com/jkawamoto/mcp-youtube-transcript/actions/workflows/python-app.yaml)
[](https://github.com/jkawamoto/mcp-youtube-transcript/blob/main/LICENSE)
[](https://github.com/pre-commit/pre-commit)
[](https://github.com/astral-sh/ruff)
[](https://smithery.ai/server/@jkawamoto/mcp-youtube-transcript)This MCP server retrieves transcripts for given YouTube video URLs.
## Installation
### For Goose CLI
To enable the YouTube Transcript extension in Goose CLI,
edit the configuration file `~/.config/goose/config.yaml` to include the following entry:```yaml
extensions:
youtube-transcript:
name: Youtube Transcript
cmd: uvx
args: [--from, git+https://github.com/jkawamoto/mcp-youtube-transcript, mcp-youtube-transcript]
enabled: true
type: stdio
```### For Goose Desktop
Add a new extension with the following settings:- **Type**: Standard IO
- **ID**: youtube-transcript
- **Name**: Youtube Transcript
- **Description**: Retrieve transcripts of YouTube videos
- **Command**: `uvx --from git+https://github.com/jkawamoto/mcp-youtube-transcript mcp-youtube-transcript`For more details on configuring MCP servers in Goose Desktop,
refer to the documentation:
[Using Extensions - MCP Servers](https://block.github.io/goose/docs/getting-started/using-extensions#mcp-servers).### For Claude Desktop
To configure this server for Claude Desktop, edit the `claude_desktop_config.json` file with the following entry under
`mcpServers`:```json
{
"mcpServers": {
"youtube-transcript": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/jkawamoto/mcp-youtube-transcript",
"mcp-youtube-transcript"
]
}
}
}
```
After editing, restart the application.
For more information,
see: [For Claude Desktop Users - Model Context Protocol](https://modelcontextprotocol.io/quickstart/user).### Installing via Smithery
To install Youtube Transcript for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@jkawamoto/mcp-youtube-transcript):```bash
npx -y @smithery/cli install @jkawamoto/mcp-youtube-transcript --client claude
```## Tools
This MCP server provides the following tools:### `get_transcript`
Fetches the transcript of a specified YouTube video.#### Parameters
- **url** *(string)*: The full URL of the YouTube video. This field is required.
- **lang** *(string, optional)*: The desired language for the transcript. Defaults to `en` if not specified.## License
This application is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details.