get_user
Fetch a DesAira creator's public profile plus their newest videos.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | Creator username (without @) |
Fetch a DesAira creator's public profile plus their newest videos.
| Name | Required | Description | Default |
|---|---|---|---|
| username | Yes | Creator username (without @) |
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 profile is public (implying no auth needed) and that it returns the newest videos. However, it doesn't mention behavior for nonexistent usernames, rate limits, or the exact structure of the response, leaving some gaps.
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 a single, front-loaded sentence with no wasted words. It immediately states the action and the target resource, making it easy to scan and understand.
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?
The tool is simple (one parameter, no output schema). The description conveys the core functionality and the public nature of the data. However, it doesn't specify how many 'newest videos' are returned or any other return details, which could be important for an agent. Still, it is sufficiently complete for a basic read tool.
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?
The input schema already fully documents the 'username' parameter with the note '(without @)'. The description adds no additional semantics beyond what the schema provides, so a baseline score of 3 is appropriate.
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 uses the specific verb 'Fetch' and clearly identifies the resource as 'a DesAira creator's public profile plus their newest videos.' This distinguishes it from sibling tools like get_video (single video), list_creators (listing creators), and get_feed (feed of content).
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 description clearly implies when to use this tool: when you need a specific creator's profile and videos by username. It differentiates from list_creators and search_content by focusing on a single creator, but it lacks explicit exclusions or 'use X instead' guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool targets a distinct resource and retrieval mode: feed and trending differ by sorting, user and video are specific entities, creators and tags are directory listings, and search is a cross-cutting keyword query. No two tools are ambiguous in purpose.
All tool names follow a consistent snake_case verb_noun pattern, using get_ for entity retrieval, list_ for directory browsing, and search_ for keyword search. The naming is predictable and uniform.
Seven tools is an ideal size for a video platform's public API, covering browsing, discovery, and search without redundancy or bloat. Each tool earns its place in the set.
The server provides a comprehensive read-only surface: chronological feed, trending, user profiles with recent videos, video metadata, creator directory, tag categories, and keyword search. This fully covers the stated purpose of public content exploration with no obvious gaps.