Skip to main content
Glama
ujorgeleite

youtube-studio-mcp

by ujorgeleite

get_channel_overview

Read-only

Retrieve your YouTube channel's key metrics: subscriber count, total views, video count, and uploads playlist ID. Use refresh=true to get current data instead of cached.

Instructions

Basic stats of the authenticated owner's YouTube channel: subscribers, total views, video count and uploads playlist id. Cached locally; pass refresh=true to bypass the cache.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
refreshNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYes
channel_idYes
view_countYes
video_countYes
subscriber_countYes
uploads_playlist_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

The readOnlyHint annotation already signals safety, and the description adds useful behavioral context by disclosing that results are cached locally and that refresh=true bypasses the cache. There is no contradiction with the annotation.

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 tight sentences. The first front-loads what the tool returns and for whom; the second clarifies the only parameter behavior that matters. No unnecessary words.

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

Completeness5/5

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

For a simple read-only tool with one optional parameter and an output schema, the description covers all essentials: scope, returned fields, and caching behavior. Return-value details are already covered by the output schema.

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

Parameters5/5

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

The schema provides only a bare boolean with a default and no description, so the description carries full responsibility for explaining refresh. It does so explicitly: 'pass refresh=true to bypass the cache.'

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 states a specific verb-resource pair: it gets basic stats of the authenticated owner's YouTube channel, and enumerates the exact fields returned (subscribers, total views, video count, uploads playlist id). However, it does not explicitly contrast this with the sibling get_channel_metrics, so some differentiation is left implicit.

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

Usage Guidelines2/5

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

No guidance is given for when to choose this tool over get_channel_metrics, list_videos, get_retention_curve, or analyze_pillar_performance. The only usage note is about refresh=true and caching, which addresses parameter behavior rather than tool selection.

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