@rikukawa/youtube-sheets-server

1.0.0 • Public • Published

YouTube to Google Sheets MCP Server

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.

Features

  • Search YouTube videos using the YouTube Data API v3
  • Save search results to Google Sheets automatically
  • Configurable search parameters (query, max results)
  • Results include video title, URL, channel name, and publish date

Installation

npm install @mcp-tools/youtube-sheets-server

Prerequisites

  1. YouTube Data API v3 Setup:

  2. Google Sheets API Setup:

    • In the same project, enable Google Sheets API
    • Create a service account
    • Download the service account key (JSON format)
    • Share your target Google Sheet with the service account email

Configuration

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": []
    }
  }
}

Usage

Use the MCP tool in your AI assistant:

<use_mcp_tool>
<server_name>youtube-sheets</server_name>
<tool_name>search_and_save</tool_name>
<arguments>
{
  "query": "programming tutorial",
  "maxResults": 5
}
</arguments>
</use_mcp_tool>

Output Format

The tool will save the following information to your Google Sheet:

  • Video Title
  • Video URL
  • Channel Name
  • Publish Date

License

MIT

Author

Riku Kawashima

Package Sidebar

Install

npm i @rikukawa/youtube-sheets-server

Weekly Downloads

2

Version

1.0.0

License

MIT

Unpacked Size

9.76 kB

Total Files

4

Last publish

Collaborators

  • rikukawa