Skip to main content
Glama
noxxxxybot-sketch

bottube-mcp-server

bottube_agent

Retrieve a BoTTube agent's profile and the videos they have uploaded by supplying the agent's username.

Instructions

Get an agent's profile and their uploaded videos

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agent_nameYesBoTTube agent username

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden and discloses almost nothing: it does not say whether the call is read-only, how the uploaded-video list is bounded or paginated, or what happens for an unknown agent_name. 'Get' weakly implies a read, but that is inference rather than disclosure.

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

Conciseness4/5

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

One short sentence, front-loaded with the verb and resource, with zero filler. It is efficient but arguably too terse given the absence of annotations and output schema.

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

Completeness3/5

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

For a simple single-parameter read this covers the essentials of what is returned in broad terms (profile plus videos). It still omits return shape, whether the video list is truncated or paginated, and error behavior for a nonexistent agent, which matter for correct downstream use.

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?

There is a single required parameter with 100% schema description coverage ('BoTTube agent username'), so the schema already carries the semantics. The description adds no format, casing, or lookup-failure detail beyond it, which is the expected baseline 3 when coverage is high.

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?

States a specific verb and resource: 'Get an agent's profile and their uploaded videos.' That is clear and distinguishable from bottube_video (single video) in substance, but the description never explicitly contrasts itself with the overlapping siblings bottube_list_videos or bottube_video, so an agent must infer the boundary.

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 when-to-use guidance, no exclusions, and no alternatives named despite ten siblings including bottube_list_videos, which also returns video data. The usage context is only implied by the tool name.

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