| name | youtube-channel-management |
| description | YouTube Channel Management: Upload File Manager videos, update video metadata, privacy, localizations, thumbnails, captions, playlists, playlist items, channel sections, channel branding, watermarks, and discover YouTube categories/capabilities. Use when an agent needs youtube channel management, youtube api, upload youtube shorts or standard videos from file manager; update titles, descriptions, tags, privacy, add video to playlist, playlist id through AgentPMT-hosted remote tool calls. |
| version | 1.0.0 |
| homepage | https://www.agentpmt.com/marketplace/youtube-api |
| compatibility | Agent instructions for AgentPMT-hosted remote tool calls. Follow this skill body for supported account, wallet, and setup routes. No local command runtime is declared. |
| metadata | {"author":"agentpmt","openclaw":{"homepage":"https://www.agentpmt.com/marketplace/youtube-api"}} |
YouTube Channel Management
Freshness
Last updated: 2026-06-24.
If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.
What This Tool Does
Upload File Manager videos to YouTube, set metadata, thumbnails, captions, privacy, and publish timing, then organize channel content with playlists, channel sections, branding, and watermarks.
Product Instructions
YouTube Channel Management
Upload File Manager videos, edit video metadata/privacy, manage thumbnails, captions, playlists, channel sections, branding, and watermarks.
Video Actions
upload_video
Required: source_file_id, title
Optional: description, tags, category_id, default_language, localizations, privacy_status (public/unlisted/private, default unlisted), publish_at, made_for_kids, license (youtube/creativeCommon), embeddable, public_stats_viewable, contains_synthetic_media, recording_date, notify_subscribers (default false), playlist_id, position, source_content_type, chunk_size_bytes
{"action":"upload_video","source_file_id":"file_abc123","title":"Product Demo","description":"Short walkthrough","privacy_status":"unlisted","notify_subscribers":false}
get_video
Required: video_id
{"action":"get_video","video_id":"dQw4w9WgXcQ"}
update_video
Required: video_id plus at least one video metadata/status field from upload_video.
{"action":"update_video","video_id":"dQw4w9WgXcQ","title":"Updated Title","license":"creativeCommon","embeddable":true}
delete_video
Required: video_id
{"action":"delete_video","video_id":"dQw4w9WgXcQ"}
set_video_thumbnail
Required: video_id, thumbnail_file_id
Optional: thumbnail_content_type
{"action":"set_video_thumbnail","video_id":"dQw4w9WgXcQ","thumbnail_file_id":"file_thumb123"}
Caption Actions
list_captions
Required: video_id
{"action":"list_captions","video_id":"dQw4w9WgXcQ"}
upload_caption
Required: video_id, caption_file_id, language, name
Optional: is_draft, caption_content_type
{"action":"upload_caption","video_id":"dQw4w9WgXcQ","caption_file_id":"file_srt123","language":"en","name":"English","is_draft":false}
update_caption
Required: caption_id and at least one of caption_file_id, is_draft
Optional: caption_content_type
{"action":"update_caption","caption_id":"caption123","is_draft":true}
download_caption
Required: caption_id
Optional: caption_format (sbv/scc/srt/ttml/vtt), translation_language, output_filename
{"action":"download_caption","caption_id":"caption123","caption_format":"srt","output_filename":"captions.srt"}
delete_caption
Required: caption_id
{"action":"delete_caption","caption_id":"caption123"}
Playlist Actions
create_playlist
Required: title
Optional: description, tags, privacy_status (public/unlisted/private, default unlisted)
{"action":"create_playlist","title":"Customer Stories Q2","privacy_status":"private"}
list_playlists
Optional: max_results (1-50, default 25), page_token
{"action":"list_playlists","max_results":10}
get_playlist, update_playlist, delete_playlist
Required: playlist_id; update also needs one of title, description, tags, privacy_status.
{"action":"update_playlist","playlist_id":"PLxxxxxxxx","title":"Updated Playlist"}
add_video_to_playlist
Required: playlist_id, video_id
Optional: position
{"action":"add_video_to_playlist","playlist_id":"PLxxxxxxxx","video_id":"dQw4w9WgXcQ","position":0}
list_playlist_items
Required: playlist_id
Optional: max_results (1-50), page_token
{"action":"list_playlist_items","playlist_id":"PLxxxxxxxx","max_results":50}
remove_playlist_item, remove_video_from_playlist
Use remove_playlist_item with playlist_item_id, or remove_video_from_playlist with playlist_id, video_id, optional remove_all.
{"action":"remove_video_from_playlist","playlist_id":"PLxxxxxxxx","video_id":"dQw4w9WgXcQ","remove_all":true}
Channel Actions
get_my_channel
Optional: channel_id (omit to use the connected account's channel)
{"action":"get_my_channel"}
update_channel_branding
Optional filter: channel_id
Required: at least one of channel_description, keywords, country, default_language, unsubscribed_trailer_video_id
{"action":"update_channel_branding","channel_description":"Official product videos and tutorials","country":"US"}
Channel sections
Actions: list_channel_sections, create_channel_section, update_channel_section, delete_channel_section
Use section_type, section_title, section_position, playlist_ids, channel_ids, and channel_section_id as required by the action.
{"action":"create_channel_section","section_type":"multiplePlaylists","section_title":"Product Videos","playlist_ids":["PLxxxxxxxx"]}
Watermarks
Actions: set_channel_watermark, unset_channel_watermark
Set requires channel_id, watermark_file_id; optional watermark_timing_type, watermark_offset_ms, watermark_duration_ms, target_channel_id, watermark_content_type.
Watermark position is fixed to YouTube's top-right corner placement; timing is configurable.
{"action":"set_channel_watermark","channel_id":"UCxxxx","watermark_file_id":"file_watermark123","watermark_offset_ms":0}
Discovery
list_video_categories
Optional: region_code (default US), hl
{"action":"list_video_categories","region_code":"US"}
get_youtube_capabilities
Returns supported API-backed features and unsupported Studio-only surfaces.
{"action":"get_youtube_capabilities"}
Notes
- Video, thumbnail, caption, and watermark uploads require File Manager file IDs.
- Update actions fetch current YouTube resources and merge supplied fields to avoid clearing omitted metadata.
- Links in descriptions are supported as description text. Public API support is not available for cards, end screens, or custom in-video linked-video elements; use playlists and channel sections for connected video organization.
When To Use
- Use this skill for
YouTube Channel Management on AgentPMT.
- Use it when an agent needs this specific tool's behavior, schema, inputs, outputs, and invocation shape.
- Search and activation keywords: youtube channel management, youtube api, upload youtube shorts or standard videos from file manager; update titles, descriptions, tags, privacy, add video to playlist, playlist id.
- Supported action names:
add_video_to_playlist, create_channel_section, create_playlist, delete_caption, delete_channel_section, delete_playlist, delete_video, download_caption, get_my_channel, get_playlist, get_video, get_youtube_capabilities, list_captions, list_channel_sections, list_playlist_items, list_playlists, list_video_categories, remove_playlist_item, remove_video_from_playlist, set_channel_watermark, set_video_thumbnail, unset_channel_watermark, update_caption, update_channel_branding, update_channel_section, update_playlist, update_video, upload_caption, upload_video.
Use Cases
- Upload YouTube Shorts or standard videos from File Manager; update titles
- descriptions
- tags
- privacy
- licensing
- synthetic media disclosure
- publish scheduling
- and localizations; set custom thumbnails; upload
- update
- download
- list
- and delete captions; create and manage playlists and playlist items; manage channel sections for connected video organization; update safe channel branding fields; set or unset channel watermarks; discover categories and API capability limits.
Related Product Skills
Categories And Industries
No categories or industry tags are published for this tool.
Actions And Schema
Complete generated action schema: ./schema.md.
Supported action count: 29.
x402 availability: not enabled for this product.
add_video_to_playlist (action slug: add-video-to-playlist): Add a YouTube video to a playlist. Price: 25 credits. Parameters: playlist_id, position, video_id.
create_channel_section (action slug: create-channel-section): Create a channel section such as singlePlaylist, multiplePlaylists, multipleChannels, recentUploads, or popularUploads. Price: 25 credits. Parameters: channel_ids, playlist_id, playlist_ids, section_position, section_title, section_type.
create_playlist (action slug: create-playlist): Create a YouTube playlist. Price: 25 credits. Parameters: description, privacy_status, tags, title.
delete_caption (action slug: delete-caption): Delete a caption track. Price: 25 credits. Parameters: caption_id.
delete_channel_section (action slug: delete-channel-section): Delete a channel section. Price: 25 credits. Parameters: channel_section_id.
delete_playlist (action slug: delete-playlist): Delete a playlist. Price: 25 credits. Parameters: playlist_id.
delete_video (action slug: delete-video): Delete a YouTube video by ID. Price: 25 credits. Parameters: video_id.
download_caption (action slug: download-caption): Download a caption track and save it to AgentPMT File Manager. Price: 25 credits. Parameters: caption_format, caption_id, output_filename, translation_language.
get_my_channel (action slug: get-my-channel): Fetch channel details for the connected account or a supplied channel ID. Price: 25 credits. Parameters: .
Live Schema And Examples
Use the compact schema above for ordinary calls. Before a new production integration, or whenever parameters, enum values, nested objects, outputs, or examples are unclear, fetch live details first.
- Exact schema: call
agentpmt-tool-search-and-execution with action: "get_schema", and tool_id: "youtube-api".
- Detailed examples: call
agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "youtube-api", or call this product with action: "get_instructions" when the product tool is already selected.
- Treat returned live schema and instructions as more specific than this generated summary.
MCP schema lookup through the main AgentPMT MCP server:
{
"method": "tools/call",
"params": {
"name": "AgentPMT-Tool-Search-and-Execution",
"arguments": {
"action": "get_schema",
"tool_id": "youtube-api"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "youtube-api"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "youtube-api"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "youtube-api"
}
}
Call This Tool
Product slug: youtube-api
Marketplace page: https://www.agentpmt.com/marketplace/youtube-api
- AgentPMT account route: first use
../agentpmt-account-mcp-rest-api-setup to connect the main MCP server or REST API for an Agent Group where this tool is enabled.
- x402 route: not enabled for this product.
- AgentPMT overview: use
../what-is-agentpmt for marketplace, Agent Group, workflow, MCP, REST, and payment concepts.
If those setup skills are not installed beside this product skill, use the downloads below.
Core AgentPMT setup skills:
- What AgentPMT is: ../what-is-agentpmt
- AgentPMT account MCP/REST setup: ../agentpmt-account-mcp-rest-api-setup
skills.sh install script:
npx skills add AgentPMT/agent-skills --skill what-is-agentpmt
npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup
MCP call shape after the main AgentPMT MCP server is connected:
{
"method": "tools/call",
"params": {
"name": "YouTube-Channel-Management",
"arguments": {
"action": "add_video_to_playlist",
"playlist_id": "example playlist id",
"position": 1,
"video_id": "example video id"
}
}
}
Use the exact tool name returned by tools/list; the name above is the expected readable form.
Authenticated AgentPMT REST call body:
{
"name": "youtube-api",
"parameters": {
"action": "add_video_to_playlist",
"playlist_id": "example playlist id",
"position": 1,
"video_id": "example video id"
}
}
Use the setup skill for the account connection details before making REST calls.
Response Handling
- Treat the returned JSON as the source of truth for this tool call.
- If the response includes warnings or correction targets, apply them before retrying.
- If the response includes a
passed or success-style boolean, use it as the workflow gate.
- If validation fails or the response shape is unclear, call
get_schema or get_instructions before retrying.
- If
add_video_to_playlist fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.
Security
- Do not place account secrets, wallet private keys, mnemonics, signatures, or payment headers in prompts or logs.
- Keep tool inputs scoped to the minimum content needed for the task.
- Use the setup skills for credential handling; this product skill only defines product-specific behavior.
AgentPMT Reference