youtube_channel_store
Store / merch shelf for a channel.
Bulk support: accepts ids for batched execution.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| ids | No | ||
| forUsername | No |
Store / merch shelf for a channel.
Bulk support: accepts ids for batched execution.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | ||
| ids | No | ||
| forUsername | No |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds useful bulk-execution behavior, but it does not explain response format, authentication expectations, or how id vs ids vs forUsername affect behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is short and front-loaded with the resource identity, and the bulk-support sentence earns its place. It could be improved by using an action-oriented opening phrase, but it contains no wasted text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
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 strong annotations, the description is minimally viable, but with no output schema and 0% parameter coverage it leaves gaps around selector semantics and invocation behavior. It is adequate but not complete enough for confident agent selection and correct parameter use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate for the bare string parameters. It clarifies only 'ids' as a batched list; 'id' and 'forUsername' get no semantic explanation, leaving the agent unsure how to choose among the three optional selectors.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description identifies the resource ('store / merch shelf') and scope ('for a channel'), which distinguishes it from sibling channel-section tools like youtube_channel_about or youtube_channel_home. However, it lacks an explicit verb such as 'get' or 'fetch', so it reads as a noun phrase rather than a clear action.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The bulk-support sentence provides one concrete usage hint: use multiple ids for batched execution. The 'for a channel' scope implies when the tool is relevant, but there is no explicit guidance on when not to use it or which sibling tool to prefer.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.