In this categoryIntegrations · 69
- How to Get a YouTube Data API Key and OAuth CredentialsStart
- How to Upload a Video to YouTube with Python and the Data API
- How to Generate YouTube Video Scripts with the Claude API
- How to Generate YouTube Titles and Descriptions with ChatGPT's API
- How to Auto-Generate Captions with Whisper and Upload an SRT
- How to Upload Videos to YouTube Automatically with Zapier
- How to Build a Make Scenario That Turns Topics into Draft Scripts
- How to Schedule YouTube Uploads with the publishAt Timestamp
- How to Auto-Draft Replies to YouTube Comments with Claude
- How to Bulk Update Titles and Tags Across Many Videos via API
- How to Build an End-to-End Script-to-Upload Pipeline with Claude and the API
- How to create a Telegram bot with BotFather and get your token
- How to find your Telegram chat ID for sending messages
- How to auto-post to a Telegram channel from a script
- How to make a Telegram bot reply with AI answers
- How to Build a Discord Bot That Auto-Replies With AI
- How to Build a Slack AI Bot With Bolt for Node
- How to add slash commands and a menu to a Telegram bot
- How to Auto-Reply on WhatsApp With AI Using Twilio
- How to switch a Telegram bot from polling to webhooks
- How to Add an /ask Slash Command That Calls AI in Discord
- How to schedule Telegram channel posts with cron
- How to add inline buttons and handle taps in a Telegram bot
- How to send photos, documents, and files with a Telegram bot
- How to Give Your Chat Bot Memory of the Conversation
- How to auto-post your blog RSS feed to a Telegram channel
- How to Make a Slack Command That Summarizes a Thread With AI
- How to build an AI moderator bot for a Telegram group
- How to Connect AI to WhatsApp With the Meta Cloud API
- How to Connect AI to Chat Apps Without Code Using n8n
- How to Build an AI Auto-Reply Viber Bot
- How to Stream AI Replies Live in Discord by Editing Messages
- How to Send an AI Welcome Message When Someone Opens Your Viber Bot
- How to Connect Notion to Claude Using the MCP Connector
- How to connect Gmail to ChatGPT so it drafts replies for you
- How to Add a Gemini AI Formula to Google Sheets With Apps Script
- How to use Gemini inside Gmail to summarize and reply to threads
- How to Create a Notion Internal Integration Token for AI Scripts
- How to connect Google Calendar to ChatGPT to schedule events by chat
- How to Classify Spreadsheet Rows With ChatGPT in Google Sheets
- How to Connect Google Drive to Claude and Search Your Files
- How to Use Gemini in the Google Docs Side Panel to Draft and Edit
- How to connect Outlook to AI with Power Automate to summarize emails
- How to Build a Notion to Google Sheets AI Pipeline With Zapier
- How to give Claude access to your Gmail with an MCP server
- How to Auto-Summarize Notion Meeting Notes With an AI Script
- How to auto-label and prioritize Gmail with AI using Apps Script
- How to Generate a Full Google Doc From an AI Prompt With Apps Script
- How to turn AI meeting notes into Outlook calendar follow-ups
- How to Extract and Summarize a Drive PDF With AI Using Apps Script
- How to build an AI scheduling assistant that books meetings via email
- How to Translate a Google Sheets Column With an AI Custom Function
- How to sync AI-extracted tasks from email to your calendar with n8n
- How to use AI to triage and batch-reply to your inbox each morning
- How to securely give an AI tool access to your email account
- How to Send a Zapier Webhook to OpenAI and Get a Summary Back
- How to Trigger an n8n AI Agent from a Webhook Node
- How to Classify Incoming Webhook Data with Claude in Make
- How to Auto-Draft Email Replies from a Form with Zapier and GPT
- How to Connect a Webhook to Receive Events
- How to Verify Webhook Signatures Before Calling an AI Model
- How to Give a Zapier AI Webhook Simple Conversation Memory
- How to Describe Uploaded Images with a Make Webhook and GPT Vision
- How to Add an Error Handler and Retry to an AI Webhook in Make
- How to Answer a Webhook Instantly While AI Runs in the Background in n8n
- How to Build a Slack Slash Command AI Bot with an n8n Webhook
- How to Cap AI Spend on a Webhook Across Zapier, Make, and n8n
- How to Pin an API Version for a Stable Integration
How to Auto-Draft Replies to YouTube Comments with Claude
Pull recent comments through the Data API, draft on-brand replies with Claude, and post them back, with a human approval gate.
Replying to every comment keeps a channel alive but eats hours. This guide reads recent top-level comments with the YouTube Data API, drafts replies with Claude in your voice, prints them for approval, and only posts the ones you confirm.
What you need
- client_secret.json with the youtube.force-ssl scope
- An Anthropic API key
- Python 3.9+ with the google client and anthropic packages
- A video id whose comments you want to handle
Step 1: Fetch recent comments
The commentThreads.list endpoint returns top-level comments. Keep the comment id so you can thread your reply onto it later.
from upload import service # reuse auth helper
def recent_comments(video_id, limit=10):
yt = service()
res = yt.commentThreads().list(
part="snippet", videoId=video_id, maxResults=limit, order="time",
).execute()
out = []
for item in res.get("items", []):
top = item["snippet"]["topLevelComment"]
out.append({
"id": top["id"],
"text": top["snippet"]["textDisplay"],
"author": top["snippet"]["authorDisplayName"],
})
return outStep 2: Draft replies with Claude
Give Claude a short persona and pass it the comment. Ask for a one or two sentence reply and a flag when a comment is hostile or spam so you can skip it.
import os, json
from anthropic import Anthropic
ai = Anthropic(api_key=os.environ["ANTHROPIC_API_KEY"])
SYSTEM = (
"You reply to YouTube comments as a friendly maker channel host. "
"Return JSON: {reply: string, skip: boolean}. "
"Set skip true for spam, hostility, or anything needing a human."
)
def draft(comment_text):
msg = ai.messages.create(
model="claude-opus-4-5", max_tokens=300, system=SYSTEM,
messages=[{"role": "user", "content": comment_text}],
)
return json.loads(msg.content[0].text)Step 3: Approve, then post
Print each draft, ask for a y or n, and only call comments.insert for the approved ones. This keeps a human in the loop, which matters because a bad auto-reply is public and permanent.
def post_reply(parent_id, text):
service().comments().insert(
part="snippet",
body={"snippet": {"parentId": parent_id, "textOriginal": text}},
).execute()
if __name__ == "__main__":
for c in recent_comments("dQw4w9WgXcQ"):
d = draft(c["text"])
if d["skip"]:
print("SKIP:", c["text"][:50]); continue
print(f"\n{c['author']}: {c['text']}")
print("Reply ->", d["reply"])
if input("Post? (y/n) ").lower() == "y":
post_reply(c["id"], d["reply"])
print("Posted.")Result
You can clear a backlog of comments in minutes: Claude drafts, you tap y or n, and only your approved replies go live under your channel name.
Watch related tutorials
20:00
07:00
18:20
16:00
1:42:18
28:14New guides in your inbox
Fresh step-by-step how-to guides as we publish them. One email a week, no more.