Skip to main content
Glama

digest_url

Turn a social media URL into LLM-ready context. Works on Xiaohongshu, Douyin, TikTok, YouTube, X and ordinary web pages. Returns the post's transcript, on-screen text, image descriptions, caption and metadata — the things you cannot get by fetching the URL yourself, because these posts are video or images behind tokenised share links. Use this whenever you are given a social media link. Bilibili, Instagram and Facebook are not supported. A long video may not finish in one call: if the result names a job id, call this tool again with that job_id (and no url) to collect it.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlYesThe post URL, including any share tokens.
formatNomarkdown (default, best for reading) or json (structured).
job_idNoCollect a digest already running. Pass the job id from a previous call instead of url. Use this rather than re-sending the url, which would start the work again.

TDQS

A4.9/5.0
Behavior5/5

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

With no annotations, the description carries the full behavioral burden and does so well. It discloses that posts are video/images behind tokenised share links, that a long video may not finish in one call, and that the agent should poll with job_id to collect the result. This goes far beyond the schema.

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?

The description is front-loaded with the core purpose, then efficiently covers platform support, output contents, exclusions, and the async retry pattern. No sentence is wasted; the length is justified by the non-trivial job_id behavior.

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 adequately explains what the tool returns and how to handle incomplete results. It also covers platform limitations and the polling workflow, making the tool usable end-to-end from a single description.

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?

Schema coverage is 100%, so the baseline is 3. The description adds extra meaning by clarifying that url includes share tokens and, more importantly, that job_id must be used instead of url to avoid restarting the work. That is genuine semantic value beyond the schema's field 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?

States a specific verb and resource ('Turn a social media URL into LLM-ready context') and immediately names the supported platforms and the concrete outputs (transcript, on-screen text, image descriptions, caption, metadata). It also explains why this tool exists — content behind tokenised share links — which fully clarifies its purpose.

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?

Gives explicit direction: 'Use this whenever you are given a social media link.' It also lists unsupported platforms (Bilibili, Instagram, Facebook) and explains the job_id workflow for long videos, including the instruction to avoid re-sending the URL. This is strong when-to-use guidance even without sibling tools.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.9/5.0
Disambiguation5/5

There is only one tool, and it has a single clear job: accept a URL or job_id and return a digested, LLM-ready representation. With no other tools, there is no possibility of confusing overlapping purposes.

Naming Consistency5/5

digest_url is a clear verb_noun name that describes exactly what the tool does. Since it is the only tool, there are no conflicting naming conventions to create inconsistency.

Tool Count4/5

One tool is minimal, but the server is deliberately narrow: digesting a link into context. The tool bundles all supported platforms and async continuation, so nothing feels redundant; it is only slightly thin because a separate status or supported-platform helper could be imagined.

Completeness5/5

For the declared supported platforms, the tool covers the full loop: submission, async polling via job_id, and rich output including transcript, on-screen text, captions, and metadata. Unsupported platforms are explicitly documented as out of scope rather than an unhandled tool-surface gap.

Resources