{
  "markdown": "![Yutu](./assets/yutu.svg)\n\n# `yutu`\n\n[![Static Badge](https://img.shields.io/badge/gitmoji-%F0%9F%98%BF%F0%9F%90%B0%F0%9F%90%A7%E2%9D%A4%EF%B8%8F%E2%80%8D%F0%9F%A9%B9-love?style=flat-square&labelColor=%23EDD1CC&color=%23FF919F)](https://gitmoji.dev)\n[![GitHub License](https://img.shields.io/github/license/eat-pray-ai/yutu?style=flat-square)](https://github.com/eat-pray-ai/yutu?tab=Apache-2.0-1-ov-file)\n[![Go Reference](https://pkg.go.dev/badge/github.com/eat-pray-ai/yutu?style=flat-square)](https://pkg.go.dev/github.com/eat-pray-ai/yutu)\n[![Go Coverage](https://github.com/eat-pray-ai/yutu/wiki/coverage.svg)](https://raw.githack.com/wiki/eat-pray-ai/yutu/coverage.html)\n\n[![GitHub Repo stars](https://img.shields.io/github/stars/eat-pray-ai/yutu?style=flat-square&logo=github)](https://github.com/eat-pray-ai/yutu/stargazers)\n[![GitHub Downloads](https://img.shields.io/github/downloads/eat-pray-ai/yutu/total?style=flat-square)](https://github.com/eat-pray-ai/yutu/releases/latest)\n[![GitHub Actions build Status](https://img.shields.io/github/actions/workflow/status/eat-pray-ai/yutu/publish.yml?style=flat-square&logo=githubactions)](https://github.com/eat-pray-ai/yutu/actions/workflows/publish.yml)\n[![GitHub Actions CodeQL Status](https://img.shields.io/github/actions/workflow/status/eat-pray-ai/yutu/codeql.yml?style=flat-square&logo=githubactions&label=CodeQL)](https://github.com/eat-pray-ai/yutu/actions/workflows/codeql.yml)\n[![GitHub Actions test Status](https://img.shields.io/github/actions/workflow/status/eat-pray-ai/yutu/test.yml?style=flat-square&logo=githubactions&label=test)](https://github.com/eat-pray-ai/yutu/actions/workflows/test.yml)\n[![LINUX DO](./assets/linuxdo_flat-square.svg)](https://linux.do/tag/2234-tag/2234)\n\n[![GitHub Release](https://img.shields.io/github/v/release/eat-pray-ai/yutu?sort=semver&style=flat-square&logo=go)](https://github.com/eat-pray-ai/yutu/releases/latest)\n[![Homebrew Formula Version](https://img.shields.io/homebrew/v/yutu?style=flat-square&logo=homebrew)](https://formulae.brew.sh/formula/yutu)\n[![WinGet Package Version](https://img.shields.io/winget/v/eat-pray-ai.yutu?style=flat-square&label=%F0%9F%93%A6%20winget\n)](https://winstall.app/apps/eat-pray-ai.yutu)\n[![npm Version](https://img.shields.io/npm/v/%40eat-pray-ai/yutu?style=flat-square&logo=npm)](https://www.npmjs.com/package/@eat-pray-ai/yutu)\n\n<!-- [![YouTube CLI, MCP server, Skill and Agent - AI-powered toolkit that grows YouTube channel on autopilot | Product\nHunt](https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=1138118&theme=light)](https://www.producthunt.com/products/yutu?embed=true&utm_source=badge-featured&utm_medium=badge&utm_campaign=badge-youtube-cli-mcp-server-skill-and-agent) -->\n\n`yutu` is a CLI, MCP server, and AI agent for YouTube that automates your entire YouTube workflow — from uploading and optimizing videos to managing comments, playlists, and channel branding — so you can get more views, higher click-through rates, and stronger audience engagement with less manual effort. [中文文档](./README_zh.md)\n\n[![mcp demo](./assets/mcp-demo.gif)](https://asciinema.org/a/wXIHU4ciFBAKrHfaFNkMoIs12)\n\n## Table of Contents\n\n- [Prerequisites](#prerequisites)\n- [Installation](#installation)\n- [Agent](#agent)\n- [MCP Server](#mcp-server)\n- [Skills](#skills)\n- [Usage](#usage)\n- [Features](#features)\n- [Contributing](#contributing)\n\n## Prerequisites\n\nAn account on [Google Cloud Platform](https://console.cloud.google.com/) is required. Set up the following:\n\n1. **Create a GCP Project** and enable these APIs under `APIs & Services -> Enable APIs and services`:\n   - [YouTube Data API v3](https://console.cloud.google.com/apis/api/youtube.googleapis.com/overview) (Required)\n   - [YouTube Analytics API](https://console.cloud.google.com/apis/api/youtubeanalytics.googleapis.com/overview) (Optional)\n   - [YouTube Reporting API](https://console.cloud.google.com/apis/api/youtubereporting.googleapis.com/overview) (Optional)\n2. **Create OAuth credentials**:\n   - Go to `APIs & Services -> OAuth consent screen`, create a consent screen with yourself as a test user\n   - Go to `Credentials -> Create Credentials -> OAuth Client ID`, select `Desktop app`\n   - Download the credential file and save it as `client_secret.json`, it should look like\n\n   ```json\n   {\n     \"installed\": {\n       \"client_id\": \"11181119.apps.googleusercontent.com\",\n       \"project_id\": \"yutu-11181119\",\n       \"auth_uri\": \"https://accounts.google.com/o/oauth2/auth\",\n       \"token_uri\": \"https://oauth2.googleapis.com/token\",\n       \"auth_provider_x509_cert_url\": \"https://www.googleapis.com/oauth2/v1/certs\",\n       \"client_secret\": \"XXXXXXXXXXXXXXXX\",\n       \"redirect_uris\": [\n         \"http://localhost\"\n       ]\n     }\n   }\n   ```\n\n3. **Authenticate**:\n\n   ```bash\n   yutu auth --credential client_secret.json\n   ```\n\n   A browser window will open for you to grant YouTube access. After granting permission, a token is saved to `youtube.token.json`.\n\n   ```json\n   {\n     \"access_token\": \"ya29.XXXXXXXXX\",\n     \"token_type\": \"Bearer\",\n     \"refresh_token\": \"1//XXXXXXXXXX\",\n     \"expiry\": \"2024-05-26T18:49:56.1911165+08:00\",\n     \"expires_in\": 3599\n   }\n   ```\n\nBy default, `yutu` will read `client_secret.json` and `youtube.token.json` from the current directory, `--credential/-c` and `--cacheToken/-t` flags are available only in `auth` subcommand. To modify the default path in all subcommands, set these environment variables.\n\n### Global Environment Variables\n\n| Variable           | Description                                  | Default                   |\n|--------------------|----------------------------------------------|---------------------------|\n| `YUTU_CREDENTIAL`  | Path, Base64, or JSON of OAuth client secret | `client_secret.json`      |\n| `YUTU_CACHE_TOKEN` | Path, Base64, or JSON of cached OAuth token  | `youtube.token.json`      |\n| `YUTU_ROOT`        | Root directory for file resolution           | Current working directory |\n| `YUTU_LOG_LEVEL`   | Log level: `DEBUG`, `INFO`, `WARN`, `ERROR`  | `INFO`                    |\n\n## Installation\n\nIf you're using an AI agent, copy and paste the following prompt to finish the installation:\n\n```plaintext\nInstall and configure yutu by following https://raw.githubusercontent.com/eat-pray-ai/yutu/refs/heads/main/internal/tools/skillgen/setup.md\n```\n\nYou can download `yutu` from [releases page](https://github.com/eat-pray-ai/yutu/releases/latest) directly, or use the following methods as you prefer.\n\n<details>\n<summary>GitHub Actions</summary>\n\nThere are two actions available for yutu, one is for general purpose and the other is for uploading video to YouTube. Refer to [youtube-action](https://github.com/eat-pray-ai/youtube-action) and [youtube-uploader](https://github.com/eat-pray-ai/youtube-uploader) for more information.\n\n</details>\n\n<details>\n<summary>Node.js</summary>\n\n```shell\n❯ npm i -g @eat-pray-ai/yutu\n```\n\n</details>\n\n<details>\n<summary>Docker</summary>\n\n```shell\n❯ docker pull ghcr.io/eat-pray-ai/yutu:latest\n❯ docker run --rm ghcr.io/eat-pray-ai/yutu:latest\n# make sure client_secret.json is in the current directory\n❯ docker run --rm -it -u $(id -u):$(id -g) -v $(pwd):/app -p 8216:8216 ghcr.io/eat-pray-ai/yutu:latest\n```\n\n</details>\n\n<details>\n<summary>Gopher</summary>\n\n```shell\n❯ go install github.com/eat-pray-ai/yutu@latest\n```\n\n</details>\n\n<details>\n<summary>Linux</summary>\n\n```shell\n❯ curl -sSfL https://raw.githubusercontent.com/eat-pray-ai/yutu/main/scripts/install.sh | bash\n```\n\n</details>\n\n<details>\n<summary>macOS</summary>\n\nInstall `yutu` using [Homebrew🍺](https://brew.sh/)(recommended), or run the shell script.\n\n```shell\n❯ brew install yutu\n\n# or\n❯ curl -sSfL https://raw.githubusercontent.com/eat-pray-ai/yutu/main/scripts/install.sh | bash\n```\n\n</details>\n\n<details>\n<summary>Windows</summary>\n\n```shell\n❯ winget install yutu\n```\n\n</details>\n\n<details>\n<summary>Verifying Installation</summary>\n\nVerify the integrity and provenance of `yutu` using its associated cryptographically signed attestations.\n\n```shell\n# Docker\n❯ gh attestation verify oci://ghcr.io/eat-pray-ai/yutu:latest --repo eat-pray-ai/yutu\n\n# Linux and macOS(if installed using shell script)\n❯ gh attestation verify $(which yutu) --repo eat-pray-ai/yutu\n\n# Windows\n❯ gh attestation verify $(where.exe yutu.exe) --repo eat-pray-ai/yutu\n```\n\n</details>\n\n## Agent\n\n`yutu` provides an agent mode (Miffy) to automate YouTube workflows. The agent can retrieve, create, update, and delete YouTube content, with built-in YouTube growth strategy and SEO expertise.\n\nCurrently, the agent mode is under active development, only supports Google's Gemini models.\n\n```shell\n# console mode (default)\n❯ yutu agent --api-key \"YOUR_GEMINI_API_KEY\"\n# specify a different model\n❯ yutu agent --model \"google:gemini-3.7-flash\" --api-key \"YOUR_GEMINI_API_KEY\"\n# web mode with sub-launchers\n❯ yutu agent --args \"web api a2a webui\" --api-key \"YOUR_GEMINI_API_KEY\"\n# show available launcher args\n❯ yutu agent --args \"\"\n```\n\n### Agent Flags\n\n| Flag                | Description                             | Default                                    |\n|---------------------|-----------------------------------------|--------------------------------------------|\n| `-a, --args`        | Launcher arguments as a single string   | `console`                                  |\n| `-m, --model`       | Model in `provider:modelName` format    | `google:gemini-3.7-flash`                  |\n| `--api-key`         | API key for the model provider          |                                            |\n| `-i, --instruction` | Override the built-in agent instruction | [INSTRUCTION.md](cmd/agent/INSTRUCTION.md) |\n\nThe `GOOGLE_GEMINI_BASE_URL` environment variable can optionally be set to use a custom Gemini API base URL.\n\n## MCP Server\n\nBefore using `yutu` as an MCP server, make sure `yutu` is installed(see [Installation](#installation) section), and you have a valid `client_secret.json` and `youtube.token.json` files(refer to [Prerequisites](#prerequisites) section).\n\nYou can add `yutu` as an MCP server in VS Code or Cursor by clicking corresponding badge, or use the CLI commands below for your preferred tool.\n\n[![Install in VS Code](https://img.shields.io/badge/VS_Code-Install_YUTU-0098FF?style=for-the-badge&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=yutu&config=%7B%22type%22%3A%20%22stdio%22%2C%22command%22%3A%20%22yutu%22%2C%22args%22%3A%20%5B%22mcp%22%5D%2C%22env%22%3A%20%7B%22YUTU_CREDENTIAL%22%3A%20%22%2Fabsolute%2Fpath%2Fto%2Fclient_secret.json%22%2C%22YUTU_CACHE_TOKEN%22%3A%20%22%2Fabsolute%2Fpath%2Fto%2Fyoutube.token.json%22%7D%7D)\n[![Install in Cursor](https://cursor.com/deeplink/mcp-install-light.svg)](https://cursor.com/install-mcp?name=yutu&config=JTdCJTIyY29tbWFuZCUyMiUzQSUyMnl1dHUlMjBtY3AlMjIlMkMlMjJlbnYlMjIlM0ElN0IlMjJZVVRVX0NSRURFTlRJQUwlMjIlM0ElMjIlMkZhYnNvbHV0ZSUyRnBhdGglMkZ0byUyRmNsaWVudF9zZWNyZXQuanNvbiUyMiUyQyUyMllVVFVfQ0FDSEVfVE9LRU4lMjIlM0ElMjIlMkZhYnNvbHV0ZSUyRnBhdGglMkZ0byUyRnlvdXR1YmUudG9rZW4uanNvbiUyMiU3RCU3RA%3D%3D)\n\n<details>\n<summary>Claude Code</summary>\n\n```shell\n# Stdio mode\n❯ claude mcp add -e YUTU_CREDENTIAL=/absolute/path/to/client_secret.json \\\n  -e YUTU_CACHE_TOKEN=/absolute/path/to/youtube.token.json \\\n  yutu -- yutu mcp\n\n# HTTP mode (start the server first: yutu mcp --mode http --auth)\n❯ claude mcp add --transport http \\\n  --client-id YOUR_CLIENT_ID.apps.googleusercontent.com \\\n  --client-secret \\\n  yutu http://localhost:8216/mcp\n```\n\n</details>\n\n<details>\n<summary>Codex</summary>\n\n```shell\n# Stdio mode\n❯ codex mcp add --env YUTU_CREDENTIAL=/absolute/path/to/client_secret.json \\\n  --env YUTU_CACHE_TOKEN=/absolute/path/to/youtube.token.json \\\n  yutu -- yutu mcp\n\n# HTTP mode (start the server first: yutu mcp --mode http --auth)\n❯ codex mcp add --url http://localhost:8216/mcp \\\n  --oauth-client-id YOUR_CLIENT_ID.apps.googleusercontent.com \\\n  yutu\n```\n\n</details>\n\n<details>\n<summary>Manual Configuration (VS Code, Cursor, OpenCode, etc.)</summary>\n\nAdd the following to your MCP settings. Remember to replace the values of `YUTU_CREDENTIAL` and `YUTU_CACHE_TOKEN` with correct paths on your local machine.\n\n```json\n{\n  \"yutu\": {\n    \"type\": \"stdio\",\n    \"command\": \"yutu\",\n    \"args\": [\n      \"mcp\"\n    ],\n    \"env\": {\n      \"YUTU_CREDENTIAL\": \"/absolute/path/to/client_secret.json\",\n      \"YUTU_CACHE_TOKEN\": \"/absolute/path/to/youtube.token.json\"\n    }\n  }\n}\n```\n\n</details>\n\n## Skills\n\n`yutu` provides a unified [skill](https://opencode.ai/docs/skills) that extends AI agents with YouTube domain knowledge, common workflows, and SEO best practices — covering videos, playlists, comments, channels, captions, subscriptions, and more.\n\n```shell\n❯ npx skills add https://github.com/eat-pray-ai/yutu/tree/main/skills/youtube\n```\n\nSee [skills/youtube/SKILL.md](skills/youtube/SKILL.md) for the full list of supported operations.\n\n## Usage\n\n```shell\n❯ yutu\nyutu is a CLI, MCP server, and AI agent for YouTube that can automate almost all YouTube workflows.\n\nEnvironment variables:\n  YUTU_CREDENTIAL    Path/Base64/JSON of OAuth client secret (default: client_secret.json)\n  YUTU_CACHE_TOKEN   Path/Base64/JSON of cached OAuth token (default: youtube.token.json)\n  YUTU_ROOT          Root directory for file resolution (default: current working directory)\n  YUTU_LOG_LEVEL     Log level: DEBUG, INFO, WARN, ERROR (default: INFO)\n\nUsage:\n  yutu [flags]\n  yutu [command]\n\nAvailable Commands:\n  abuseReport            Manage YouTube abuse reports\n  activity               Manage activities on YouTube\n  agent                  Start an agent to automate YouTube workflows\n  auth                   Authenticate with YouTube APIs\n  caption                Manage YouTube video captions\n  channel                Manage YouTube channels\n  channelBanner          Manage YouTube channel banners\n  channelSection         Manage YouTube channel sections\n  comment                Manage YouTube comments\n  commentThread          Manage YouTube comment threads\n  completion             Generate the autocompletion script for the specified shell\n  help                   Help about any command\n  i18nLanguage           Manage YouTube i18n languages\n  i18nRegion             Manage YouTube i18n regions\n  liveBroadcast          Manage YouTube live broadcasts\n  liveChatBan            Manage YouTube live chat bans\n  liveChatMessage        Manage YouTube live chat messages\n  liveChatModerator      Manage YouTube live chat moderators\n  liveStream             Manage YouTube live streams\n  mcp                    Start MCP server\n  member                 Manage YouTube channel members\n  membershipsLevel       Manage YouTube memberships levels\n  playlist               Manage YouTube playlists\n  playlistImage          Manage YouTube playlist images\n  playlistItem           Manage YouTube playlist items\n  search                 Manage YouTube search\n  subscription           Manage YouTube subscriptions\n  superChatEvent         Manage YouTube Super Chat events\n  thirdPartyLink         Manage YouTube third-party links\n  thumbnail              Manage YouTube video thumbnails\n  version                Show the version of yutu\n  video                  Manage YouTube videos\n  videoAbuseReportReason Manage YouTube video abuse report reasons\n  videoCategory          Manage YouTube video categories\n  watermark              Manage YouTube watermarks\n\nFlags:\n  -h, --help   help for yutu\n\nUse \"yutu [command] --help\" for more information about a command.\n```\n\n## Features\n\nPlease refer to [FEATURES.md](docs/FEATURES.md) for more information.\n\n## Contributing\n\nPlease refer to [CONTRIBUTING.md](docs/CONTRIBUTING.md) for more information.\n",
  "bytes": 15760,
  "sha": "3b0834a6109cf8f5ba5cd7ace122f2544ac3e090bcd3ddf9c12a701f145816ab",
  "repo_slug": "eat-pray-ai/yutu",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_eat_pray_ai_yutu_66baca20/readme"
}