VideosTemporales
Server Details
Temporary video hosting for AI agents with shareable human-viewing links.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP · MCP 2025-11-25
- URL
TDQS
Scored across 2 tools
The two tools have entirely distinct responsibilities: one retrieves upload constraints, the other performs the upload. There is no overlap or realistic confusion between them.
Both tool names follow a clear verb-first snake_case pattern: get_upload_limits and upload_temporary_video. The naming style is consistent and the verbs accurately describe the actions.
Two tools is slightly below the typical well-scoped range, but for a focused temporary-video upload service the count feels reasonable. Each tool serves a necessary part of the core workflow without redundancy.
The domain is narrow: upload a temporary video and return a viewing page. Querying limits beforehand covers the natural pre-upload need, and no delete or listing tools are required for temporary files.
Available Tools
2 toolsget_upload_limitsGet temporary video upload limitsARead-onlyIdempotentInspect
Returns the current size, quota, file-type and expiration limits for this VideosTemporales agent integration.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| delivery | Yes | |
| instruction | Yes | |
| max_upload_mb | Yes | |
| uploads_per_hour | Yes | |
| daily_bytes_limit | No | |
| accepted_extensions | Yes | |
| allowed_ttl_minutes | Yes | |
| default_ttl_minutes | Yes | |
| daily_bytes_remaining | No | |
| temporary_https_url_supported | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already carry the safety profile (readOnlyHint=true, idempotentHint=true, destructiveHint=false), so the bar for the description is lower. The description adds value beyond that by disclosing that the returned limits are specific to this integration and by enumerating the limit types returned, which orients the agent about what the call exposes.
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?
A single sentence with zero filler: the verb is front-loaded, the four limit dimensions are listed compactly, and the integration scope closes the sentence. Every word contributes meaning.
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 zero-parameter, read-only query with rich annotations and an output schema present, the description covers everything an agent needs to invoke it correctly. Return-value shape is documented by the output schema, so the description does not need to repeat it.
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 tool takes zero parameters and schema description coverage is trivially 100%, so the baseline 4 applies. There is nothing for the description to explain about arguments; it correctly focuses on the returned limit values instead.
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 names a specific verb ('Returns') and a concrete resource (temporary video upload limits), then enumerates the exact dimensions covered: size, quota, file-type, and expiration. Scoping it to 'this VideosTemporales agent integration' cleanly distinguishes it from the sibling upload_temporary_video without needing to compare schemas.
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?
There is no explicit 'use this before uploading' statement, but with a single sibling named upload_temporary_video, the selection context is unambiguous: one queries limits, the other performs the upload. The context is clear enough that an agent would not mistake which tool to invoke.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
upload_temporary_videoUpload a temporary videoAInspect
Uploads a user-provided video to VideosTemporales and returns a temporary human viewing page. Always give the returned share_url to the user exactly; never construct or expose a direct media URL.
| Name | Required | Description | Default |
|---|---|---|---|
| file | No | Video file supplied by the MCP host. Prefer this when the user has attached or selected a video. | |
| source_url | No | Temporary public HTTPS URL of a video. Use only when the host cannot provide the file parameter. | |
| custom_name | No | Optional display name for the video. | |
| ttl_minutes | No | How long the human viewing link remains available. | |
| lock_first_viewer | No | ||
| anti_repost_watermark | No | ||
| share_verification_data | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| ok | Yes | |
| status | No | |
| delivery | Yes | |
| share_url | Yes | |
| expires_at | Yes | |
| size_bytes | Yes | |
| instruction | Yes | |
| ttl_minutes | Yes | |
| duration_seconds | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate a non-read-only, non-destructive write operation. The description adds valuable behavioral detail beyond that: the output is a temporary human viewing page, the share_url must be passed exactly as returned, and direct media URLs must never be exposed. This matches the ttl_minutes parameter and provides context annotations cannot encode.
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?
Two sentences, both necessary: the first states the operation and result, the second states the critical rule about share_url handling. No filler, and the most important behavioral constraint is front-loaded.
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?
With an output schema present, return values need no explanation. The description covers the core usage and the essential share_url rule, and the schema documents most parameters. Minor gaps remain: the purpose of sibling get_upload_limits is not referenced, and the three boolean flags are left underspecified, but these do not block correct invocation.
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 57%, and the description does not explain the uncovered boolean parameters (lock_first_viewer, anti_repost_watermark, share_verification_data). The general mention of 'user-provided video' and 'temporary human viewing page' aligns with file/source_url and ttl_minutes, but adds little beyond the schema's own parameter descriptions.
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 a specific verb ('Uploads') and a named resource ('VideosTemporales'), and states the distinctive output ('temporary human viewing page'). This clearly distinguishes it from the sibling get_upload_limits, which is about reading quota rather than creating a shareable upload.
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 establishes the tool's context (user-provided video) and gives a firm post-call instruction about returning share_url verbatim. The schema adds parameter-level guidance on preferring file vs source_url. It stops short of explicitly saying when not to use this tool or when to prefer get_upload_limits, but the intent is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
2 tool updates
- First observed
get_upload_limits - First observed
upload_temporary_video
Related MCP Connectors
Verification videos for AI coding agents: record the run, upload over MCP, share a viewer link.
Hosting for AI agents: publish a live website in one tool call, ephemeral or forever.
Instant web publishing for AI agents. POST HTML, get a live URL. No account needed.
Video, audio, and image processing for AI agents: convert, transcribe, upscale - 150+ operations.
Related MCP Servers
AlicenseAqualityAmaintenanceTranscodely is agent-native video infrastructure: transcode, host, and get a playable link back from one natural-language prompt. Connect with one OAuth click, then create a job, poll status, and hand back a durable player URL - 7 tools, including AI-generated captions.127MIT- AlicenseAqualityBmaintenanceInstant web hosting for AI agents. Publish a live site in one call, no account needed.5MIT
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to generate narrated videos from topics or scripts, with stock footage, home videos, or local AI clips.2MIT
- AlicenseBqualityCmaintenanceEnables AI agents to edit videos locally by inspecting media, applying templates, cutting clips, and delivering finished files, with memory of human preferences.183Apache 2.0
Glama MCP Gateway
Add one secure layer between your agents and this server.