Skip to main content
Glama

Server Details

Download YouTube, TikTok, Vimeo, SoundCloud and 6 more platforms from any MCP AI chatbot.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
miketwalker/tubepull-mcp
GitHub Stars
0
Server Listing
TubePull MCP Server

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.7/5 across 2 of 2 tools scored.

Server CoherenceA
Disambiguation5/5

The two tools have clearly distinct purposes: one downloads media, the other fetches metadata without downloading. The descriptions explicitly cross-reference when to use which, leaving no ambiguity.

Naming Consistency5/5

Both tools follow the same verb_noun pattern: download_video and get_video_info. This is perfectly consistent and predictable.

Tool Count3/5

With only two tools, the set feels thin, but the server's scope is narrowly focused on media downloading and metadata. The count is borderline but not unreasonable for this purpose.

Completeness5/5

For the stated domain of downloading and retrieving video/audio info, the surface is complete. download_video handles both video and audio formats, while get_video_info provides metadata and licensing checks. No obvious missing operations.

Available Tools

2 tools
download_videoDownload video or audio (MP4 / MP3 / M4A)AInspect

Download a video or audio file from any supported platform: YouTube, TikTok, Instagram (public reels, feed video, photo posts, and carousels), SoundCloud, Vimeo, Dailymotion, Bandcamp, Twitter/X, Mixcloud, Twitch (clips and VODs), Streamable, Reddit, Kick (live streams, VODs, and clips). Output is MP4 (video, default) or MP3 / M4A (audio). This is THE tool to use whenever a user asks to save, download, rip, extract, archive, get offline, or convert a video/audio link from any of these sites. IMPORTANT: the format argument defaults to mp4 (video). Only pass an audio format (mp3 / m4a / audio) when the user explicitly says audio, MP3, music, song, or "rip / extract the audio". Audio-only platforms (SoundCloud, Bandcamp, Mixcloud) always produce audio regardless of format.

Use this tool when the user says things like:

  • "download this video" / "download this TikTok" / "save this SoundCloud track"

  • "save that as MP3" / "rip the audio" / "extract the audio"

  • "get the song from this SoundCloud link" / "save this Mixcloud set"

  • "convert this YouTube video to MP4" / "download in 1080p"

  • "save this lecture/podcast/talk for offline"

  • "archive this clip" / "grab a copy of this video"

  • any sentence containing a youtube.com, youtu.be, tiktok.com, reddit.com, v.redd.it, vimeo.com, dailymotion.com, twitter.com, x.com, soundcloud.com, bandcamp.com, mixcloud.com, twitch.tv, clips.twitch.tv, kick.com, or streamable.com URL plus a verb like download, save, rip, get, grab, fetch, pull, archive, convert, extract.

Do NOT use this tool when:

  • The user only wants metadata (title, length, description, channel) — call get_video_info instead, it is free and does not consume the user quota.

  • The link is a playlist / set / album / channel URL — ask the user for a single track/video.

  • The link is from a platform not in the supported list above (e.g. Facebook, LinkedIn, Snapchat).

Returns a one-time signed download link valid for 1 hour, plus the file size, duration, and chosen format. Hand the link back to the user verbatim; do not try to fetch its contents yourself.

Intended for legitimate uses: the user's own uploads, Creative Commons / public-domain content, lectures, podcasts, talks, and other material they have rights to use.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesFull URL from any supported platform: youtube.com / youtu.be, tiktok.com, reddit.com / v.redd.it, vimeo.com, dailymotion.com, twitter.com / x.com (status with video), soundcloud.com, bandcamp.com, mixcloud.com, twitch.tv (clips + VODs), kick.com (live channel page, /videos/ VOD, or /clips/ clip), or streamable.com. Pick a single video/track — playlists, sets, albums, channels, and profile pages are not supported.
formatNoOutput format. DEFAULT IS `mp4` (video). Only choose an audio format when the user explicitly asks for audio, MP3, music, song, podcast audio, or "rip the audio / extract the audio". Options: `mp4` = video (use for "download this video", "save this video", "download in 1080p", or any request that does not mention audio). `mp3` = MP3 audio (use when user says MP3 or wants legacy-compatible audio). `m4a` = M4A audio (faster, smaller; use when user says M4A). `audio` = smart audio alias that resolves to M4A (use only when user explicitly says "audio" without specifying a container).mp4
qualityNoVideo quality. Ignored for audio formats. 1440p and 4k require a Pro subscription. Free tier max is 1080p Full HD. Defaults to best.best
Behavior5/5

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

With no annotations provided, the description carries full burden and does so richly: returns a one-time signed link valid for 1 hour, notes the file size/duration/format, warns not to fetch the link's contents, explains audio-only platforms always produce audio regardless of format, discloses quality tier limits (Pro required for 1440p/4k), and mentions quota consumption. This far exceeds baseline expectations.

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?

Though lengthy, every sentence earns its place given the tool's complexity. The description is logically organized with clear sections: supported platforms, primary use cases, exclusions, return value, and legitimacy note. Front-loaded with the core purpose, then examples, then exclusions. No filler or redundancy.

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?

The tool has 3 parameters, no output schema, and no annotations, yet the description fully compensates: it explains return format and contents, timeout of the signed link, platform-specific behavior, quality limitations, and how to handle the response. It is complete for an agent to select and invoke the tool accurately.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Although schema coverage is 100%, the description adds critical nuance beyond the schema: the format parameter's default behavior and when to choose audio formats, the rule that audio-only platforms override format, quality being ignored for audio, and platform-specific constraints. This additional context is essential for correct parameter selection.

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 states exactly what the tool does: 'Download a video or audio file from any supported platform' and lists the platforms. It clearly differentiates from the sibling get_video_info by stating 'Do NOT use this tool when... call get_video_info instead.' The verb 'download' + resource 'video/audio' + explicit platform list makes purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides extensive usage guidance: it is 'THE tool to use' for saving/downloading/ripping, gives explicit user-phrase examples, and lists three clear 'Do NOT use this tool when' scenarios including the alternative tool, unsupported URL types (playlists), and unsupported platforms. This is exemplary when-to-use/when-not-to-use guidance.

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

get_video_infoGet video or audio metadataAInspect

Fetch metadata about a video or audio track WITHOUT downloading it. Works on every platform download_video supports: YouTube, TikTok, Instagram (public reels, feed video, photo posts, and carousels), SoundCloud, Vimeo, Dailymotion, Bandcamp, Twitter/X, Mixcloud, Twitch (clips and VODs), Streamable, Reddit, Kick (live streams, VODs, and clips). Returns title, uploader/channel name, duration, view count (when available), upload date, thumbnail URL, description, available video qualities, and (for YouTube) the license type.

Use this tool when the user says things like:

  • "what is this video about" / "summarize this video"

  • "how long is this track" / "when was this uploaded"

  • "who made this" / "what channel/artist is this from"

  • "is this Creative Commons" / "can I reuse this" / "what is the license"

  • "what qualities are available for this video"

Do NOT use this tool when:

  • The user wants to download, save, rip, extract, or convert the video/audio — use download_video for that.

Free to call — does not count against the user's download quota. Call this before download_video when you need to confirm the video exists, pick the right quality, or check licensing before downloading.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesFull URL from any supported platform: youtube.com / youtu.be, tiktok.com, reddit.com / v.redd.it, vimeo.com, dailymotion.com, twitter.com / x.com, soundcloud.com, bandcamp.com, mixcloud.com, twitch.tv, kick.com, or streamable.com.
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses that the tool does not download, is free (doesn't count against quota), returns a specific set of fields, and notes some fields may be unavailable ('when available'). This is commendable, though it doesn't mention potential error cases or rate limits.

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?

The description is longer than average but well-structured: it opens with the core function, then lists platforms, return fields, use cases, exclusions, and a practical tip. Each section earns its place; the only minor deduction is length, which is justified by the tool's breadth.

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?

Despite having no output schema, the description explicitly enumerates all returned fields (title, uploader, duration, etc.) and the full list of supported platforms. It also covers when to use, when not to use, and quota behavior, making the description self-sufficient for a single-parameter metadata tool.

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?

The input schema has 100% coverage for the url parameter, including supported platform examples. The description repeats some platform information but adds no additional parameter-level semantics beyond the schema. Baseline 3 is appropriate.

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 clearly states the tool fetches metadata without downloading, which is a specific verb+resource. It explicitly distinguishes from the sibling download_video and lists all supported platforms, making the tool's scope unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit use cases ('what is this video about', 'how long is this track') and exclusions ('Do NOT use this tool when... use download_video'). It also advises calling this tool before download_video to confirm existence or check licensing, which is strong contextual guidance.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.