mcp youtube sheets
Provides functionality to search [YouTube](https://www.youtube.com/) videos and automatically save the results to [Google Sheets](https://workspace.google.com/products/sheets/).
Provides functionality to search [YouTube](https://www.youtube.com/) videos and automatically save the results to [Google Sheets](https://workspace.google.com/products/sheets/).
This MCP server provides functionality to search YouTube videos and automatically save the results to Google Sheets. It's designed to work with Claude and other AI assistants that support the Model Context Protocol.
npm install @rikukawa/youtube-sheets-server
Create an API key
Google Sheets API Setup:
Add the server to your MCP settings file:
{
"mcpServers": {
"youtube-sheets": {
"command": "node",
"args": ["path/to/youtube-sheets-server/build/index.js"],
"env": {
"YOUTUBE_API_KEY": "your-youtube-api-key",
"SPREADSHEET_ID": "your-spreadsheet-id"
},
"disabled": false,
"alwaysAllow": []
}
}
}
“Ask the AI assistant to ‘search for YouTube videos with “ChatGPT usage” and retrieve 10 videos’ and try using it in that way.”
The tool will save the following information to your Google Sheet: - Video Title - Video URL - Channel Name - Publish Date
MIT
Riku Kawashima