Skip to main content
Glama
ChristophLanganke

youtube-mcp

get_video_info

Retrieve video title, channel, duration, description, view count, and caption availability. Provides complete metadata without requiring sign-in or API quota, using a video ID or URL.

Instructions

Get metadata for a video: title, channel, duration, description, view count and whether captions exist. Needs no sign-in and no API quota.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
videoYesVideo ID or URL
full_descriptionNoReturn the whole description instead of the first 1000 characters

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the behavioral burden. It discloses that no authentication and no API quota are required, which is meaningful access context. It does not cover error cases or invalid video behavior, but the read-only nature of metadata retrieval is reasonably clear.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no filler. The primary purpose and key fields are front-loaded, and the access requirement is stated efficiently in the second sentence.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter read tool with no output schema, the description lists the returned metadata fields and states access requirements. It is complete enough for an agent to invoke correctly, though it does not describe the exact response structure or error behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already explains both parameters. The description adds no extra meaning about the video parameter format or the full_description boolean beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states a specific verb ('Get metadata for a video') and enumerates the returned fields (title, channel, duration, description, view count, captions existence). It does not explicitly name sibling tools, but the metadata focus is semantically distinct from transcript and upload tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context by stating it needs no sign-in and no API quota, which tells an agent when this public-access tool is appropriate. It does not explicitly state when not to use it or name alternatives, so it stops short of full exclusion guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.