Skip to main content
Glama

VideosTemporales

Server Details

Temporary video hosting for AI agents with shareable human-viewing links.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A4.4/5.0

Scored across 2 tools

Disambiguation5/5

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.

Naming Consistency5/5

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.

Tool Count4/5

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.

Completeness5/5

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 tools
get_upload_limitsGet temporary video upload limitsA
Read-onlyIdempotent
Inspect

Returns the current size, quota, file-type and expiration limits for this VideosTemporales agent integration.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
deliveryYes
instructionYes
max_upload_mbYes
uploads_per_hourYes
daily_bytes_limitNo
accepted_extensionsYes
allowed_ttl_minutesYes
default_ttl_minutesYes
daily_bytes_remainingNo
temporary_https_url_supportedYes

TDQS

A4.5/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness5/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
fileNoVideo file supplied by the MCP host. Prefer this when the user has attached or selected a video.
source_urlNoTemporary public HTTPS URL of a video. Use only when the host cannot provide the file parameter.
custom_nameNoOptional display name for the video.
ttl_minutesNoHow long the human viewing link remains available.
lock_first_viewerNo
anti_repost_watermarkNo
share_verification_dataNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
okYes
statusNo
deliveryYes
share_urlYes
expires_atYes
size_bytesYes
instructionYes
ttl_minutesYes
duration_secondsNo

TDQS

A4.2/5.0
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

  1. 2 tool updates
    • First observedget_upload_limits
    • First observedupload_temporary_video

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources