Skip to main content
Glama

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v0.1.0

  • Disambiguation5/5

    Each tool has a clearly distinct purpose: transcript extracts spoken content, playlist lists videos in a playlist, and video_facts provides metadata. There is no overlap or ambiguity between them.

    Naming Consistency5/5

    All tool names follow the same pattern: 'youtube_' prefix followed by a descriptive noun or noun phrase. The naming is consistent and predictable, using lowercase with underscores throughout.

    Tool Count5/5

    Three tools is a reasonable and well-scoped count for a YouTube-focused MCP server. Each tool covers a core, distinct capability without unnecessary bloat, falling within the typical 3-15 range.

    Completeness4/5

    The tool set covers the main YouTube interaction needs: reading transcripts, fetching video metadata, and enumerating playlists. Minor gaps exist (e.g., no search or comment retrieval), but the core workflows are complete and work well together.

  • Average 4.7/5 across 3 of 3 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 4 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI is passing
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior4/5

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

    With no annotations provided, the description carries the full burden. It discloses that the tool is cheaper than transcript retrieval, the exact data it returns, and that it does not read captions in the first sentence. It does not cover edge cases like unavailable videos, but for a simple read-only lookup, the transparency is solid.

    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 compact and front-loaded with the primary purpose. Every sentence adds value: the first sentence defines the action, the second enumerates return fields, and the third gives usage context. There is no redundancy or filler.

    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 one-parameter metadata lookup tool with an output schema, the description is complete. It covers what the tool does, what data it returns, and when to use it relative to sibling tools. The presence of an output schema means return format details need not be repeated here.

    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?

    The schema already provides a complete description for the single 'url' parameter (100% coverage). The description does not add extra meaning about the parameter beyond what the schema states, but it is not lacking since the schema is sufficient.

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

    Purpose5/5

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

    The description clearly states the tool looks up YouTube video metadata without reading captions. It lists specific data fields (title, channel, duration, publish date, counts, etc.) and differentiates from the sibling youtube_transcript by framing it as a metadata lookup rather than a transcript fetch.

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

    Usage Guidelines5/5

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

    Explicit guidance is given: use this tool when the question is about the video itself, not its contents, and to check for captions before requesting a transcript. It also mentions the cost advantage over pulling a transcript, effectively saying when to prefer this tool over youtube_transcript.

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

  • Behavior4/5

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

    With no annotations, the description carries full burden. It discloses what the tool returns (watch URLs and playlist title) and what it does not (video details), plus an edge case about watch links. While it doesn't explicitly state read-only semantics or error behavior, the verb 'List' and the outlined scope provide sufficient transparency for a simple operation.

    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 three sentences, each with a distinct purpose: statement of core functionality, clarification of output scope, and usage guidance with an edge case. No redundant information, and the primary purpose is front-loaded.

    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 single-parameter tool with an output schema, the description covers all necessary aspects: what it returns, what it excludes, how to use it in a workflow, and an edge case. The mention of sibling tools completes the integration picture, making it self-sufficient for an AI agent.

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

    Parameters4/5

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

    The schema description for the single parameter is complete ('A youtube.com or youtu.be link'), but the tool description adds meaningful nuance: it clarifies that a watch link embedded in a playlist is also accepted. This goes beyond the schema and enriches the parameter semantics.

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

    Purpose5/5

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

    The description clearly states the tool lists videos in a YouTube playlist in playlist order. It distinguishes itself from siblings by explicitly noting it returns only watch URLs and the playlist title, not video details, and directs users to call youtube_video_facts or youtube_transcript for that.

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

    Usage Guidelines5/5

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

    The description gives explicit usage guidance: use it to unpack a playlist, then call the sibling tools on the returned URLs. It also covers an edge case (watch links inside playlists), providing clear context on when and how to use the tool.

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

  • Behavior5/5

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

    With no annotations, the description fully discloses behavior: default returns whole transcript, window edges return whole caption lines, language fallback order, presence of language and auto_generated fields, absence of timestamps, and the Shorts limitation. This is rich, actionable behavioral context.

    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 well structured with a clear lead sentence followed by logically grouped details. Every sentence adds value—parameters, language behavior, output characteristics, and a pointer to an alternative—without unnecessary fluff.

    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 tool with 3 parameters, an output schema, and no annotations, the description covers all critical aspects: input URL format, parameter semantics, edge cases, language handling, output limitations, and unsupported cases. It is fully complete for an agent to select and invoke correctly.

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

    Parameters4/5

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

    Schema coverage is 100%, but the description adds semantic nuance beyond schema: it clarifies that start_seconds/end_seconds narrow the response, that 'the whole thing' is returned by default, and that caption lines straddling the window are returned whole. This goes beyond the schema's terse descriptions.

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

    Purpose5/5

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

    The description opens with a clear, specific verb and resource: 'Read what is said in a YouTube video, as plain text.' It also differentiates from siblings by explicitly naming youtube_video_facts for metadata-only needs, making the tool's scope unmistakable.

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

    Usage Guidelines5/5

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

    It provides explicit usage guidance: use start_seconds/end_seconds for long videos to keep responses small, warns that Shorts are unsupported, and directs users to youtube_video_facts when they only need title/length/view count. This covers when, when-not, and alternatives.

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

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

youtube-mcp MCP server

Copy to your README.md:

Score Badge

youtube-mcp MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/chiekh-a/youtube-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server