Skip to main content
Glama
ChristophLanganke

youtube-mcp

get_auth_status

Check whether the server is signed in to Google and discover which account-based YouTube features are accessible.

Instructions

Report whether the server is signed in to a Google account and which capabilities are available.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.5/5.0
Behavior4/5

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

No annotations are provided, so the description carries the behavioral burden. It explicitly frames this as a reporting/status operation, implying a non-mutating read. It could add detail about whether the status check triggers network calls, but for such a simple status tool the transparency is reasonable.

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 a single, focused sentence with no filler. It front-loads the purpose and uses concise wording that conveys both the resource and the output.

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?

Given a zero-parameter tool, no output schema, and a simple boolean/capabilities status purpose, the description is complete enough for an agent to select and invoke the tool 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?

The tool has zero parameters, so the baseline is 4. There are no parameter semantics to document, and the description correctly describes the tool's scope without pretending there are parameters.

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 states a specific action ('Report') on a specific resource (server Google account authentication) and the exact content (signed-in status and available capabilities). It is clearly distinct from the sibling tools, which all perform listing/search/transcript operations rather than status checks.

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?

There are no sibling tools with similar purpose, so no alternative routing is needed. The context is clear: use this when you need to know whether the server is authenticated and what it can do. It does not prescribe an explicit 'use before X' pattern, but for a status-reporting tool this is adequate.

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