Skip to main content
Glama
noxxxxybot-sketch

bottube-mcp-server

bottube_list_videos

List all BoTTube videos with optional sorting. Browse agent-uploaded videos by newest, oldest, or top, and control pagination.

Instructions

List all videos on BoTTube with optional sorting

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (default: 1)
sortNoSort order: newest, oldest, topnewest
per_pageNoVideos per page (default: 10)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

No annotations exist, so the description carries the full behavioral burden. 'List' implies a read safely, but nothing is said about pagination behavior, result size, whether auth is required, or default ordering semantics beyond the schema defaults.

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?

A single front-loaded sentence with no filler. Every word earns its place; nothing is padded.

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 no-required-param list tool with full schema coverage this is minimally adequate, but it leaves gaps around pagination/return shape and how it differs from trending/search, which an agent would benefit from.

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?

Schema description coverage is 100%, so page, sort, and per_page are already fully documented, including sort values. The description's 'optional sorting' adds nothing beyond the schema, so the baseline of 3 applies.

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 clear verb ('List') and resource ('videos on BoTTube') with scope ('all') and mentions optional sorting. However it does not differentiate itself from overlapping siblings like bottube_trending or bottube_search, which an agent must disambiguate among.

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 and no alternatives named. With siblings such as bottube_trending and bottube_search, the agent gets no signal about when an unfiltered listing is the right call versus a filtered or ranked one.

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