Skip to main content
Glama

Server Details

Search your saved videos by what was said. YouTube, Reels, and TikTok transcripts. Read-only.

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
URL

TDQS

A4.3/5.0

Scored across 2 tools

Disambiguation5/5

The two tools target entirely different resources: one returns static product metadata, the other looks up a specific video's public transcript. There is no plausible way to confuse them, and each description explicitly states its scope and limits.

Naming Consistency5/5

Both tools follow the same get_<noun> snake_case pattern (get_product_info, get_public_transcript), and the nouns clearly describe the returned resource. No mixing of conventions or verb styles.

Tool Count3/5

Two tools is thin for a server whose domain includes a public transcript index across four platforms. It is defensible as a minimal read-only surface, but a single lookup tool plus a static info tool leaves little room for the stated scope.

Completeness3/5

The surface covers product facts and single-URL transcript lookup, but there is no way to search or browse the transcript index, list processed videos, or check coverage for multiple URLs. Core lookup works, but agents hit dead ends on discovery-style tasks.

Available Tools

2 tools
get_product_infoGet SavedThat product infoA
Read-onlyIdempotent
Inspect

Return a factual overview of SavedThat: what the service does, which video platforms it supports, the current plan limits and prices, and links to its apps and documentation. Use it to answer questions about the product itself. It reads no user data.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlYes
appsNo
pricingYes
productYes
docs_urlNo
platformsYes

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, openWorldHint=false and destructiveHint=false, so safety is largely covered structurally. The description adds a useful behavioral nuance on top: 'It reads no user data,' which tells the agent no user context, auth scope, or privacy considerations are involved — beyond what the readOnly hint alone conveys.

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, front-loaded with the action and enumerated contents, then immediately followed by when-to-use and the no-user-data caveat. Every clause earns its place with no filler.

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?

An output schema exists, so return structure need not be explained; the description instead summarizes the semantic content of the response and confirms it touches no user data. For a zero-parameter, read-only informational tool this covers everything an agent needs to invoke it correctly.

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, so the baseline is 4 per the rubric. The description correctly implies a parameterless, context-free call and adds no misleading parameter claims.

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 ('Return a factual overview of SavedThat') and enumerates exactly what the payload covers: service function, supported platforms, plan limits and prices, and links to apps and docs. This is clearly distinguishable from the sibling get_public_transcript, which deals with transcripts of user content rather than static product facts.

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?

Provides clear usage context: 'Use it to answer questions about the product itself.' That tells the agent when the tool is appropriate. It stops short of naming get_public_transcript as the alternative or stating an explicit when-not condition (e.g. for user-specific data), so it is strong but not fully routing.

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

get_public_transcriptGet a public transcript excerptA
Read-onlyIdempotent
Inspect

Look up one video URL (YouTube, YouTube Shorts, Instagram Reels or TikTok) in SavedThat's public transcript index and return the opening excerpt of that transcript plus the link to its public page. Returns found=false when SavedThat has not processed the video. Only an excerpt is public; the full transcript is available to signed-in users in the app.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesVideo URL on YouTube, Instagram Reels or TikTok.

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlNo
foundYes
titleNo
channelNo
excerptNo
platformNo
truncatedNo
transcript_page_urlNo

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, openWorldHint=false and destructiveHint=false, so the safety profile is covered. The description adds genuinely new behavioral context beyond them: only an excerpt is public, the full transcript is gated behind sign-in, and a not-found result is expressed as found=false rather than an error.

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?

Three tightly written sentences with the primary operation front-loaded, followed by the failure case and the public/excerpt limitation. No filler and nothing repeated from the schema or annotations.

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 one-parameter lookup with a rich annotation set and an output schema, the description is complete: it covers what is fetched, what is returned, what the not-found sentinel is, and why only an excerpt is available. An agent can call this correctly without further information.

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?

There is a single required parameter at 100% schema description coverage, so the baseline is 3. The description does add platform scope (mentioning YouTube Shorts, which the schema's url description omits), but adds no format or normalization guidance for the URL.

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 (look up) and resource (one video URL in SavedThat's public transcript index) and names the exact return (opening excerpt plus public page link). It also enumerates the supported platforms, so the agent knows the scope of inputs immediately.

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 clarifies the intended use case (single-URL lookup against the public index) and signals the failure mode (found=false when the video has not been processed), plus the scope boundary that full transcripts require sign-in. It does not explicitly contrast with the only sibling, get_product_info, but that tool is unrelated enough that no routing ambiguity exists.

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
    • Changedget_product_info1 field changed
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "apps": {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "docs_url": {
        +      "type": "string"
        +    },
        +    "platforms": {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    "pricing": {
        +      "type": "string"
        +    },
        +    "product": {
        +      "type": "string"
        +    },
        +    "url": {
        +      "type": "string"
        +    }
        +  },
        +  "required": [
        +    "product",
        +    "url",
        +    "platforms",
        +    "pricing"
        +  ],
        +  "type": "object"
        +}
    • Changedget_public_transcript2 fields changed
      • changedInput schema / properties / url / description
        Previous value: -"The video URL."New value: +"Video URL on YouTube, Instagram Reels or TikTok."
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "properties": {
        +    "channel": {
        +      "type": [
        +        "string",
        +        "null"
        +      ]
        +    },
        +    "excerpt": {
        +      "type": "string"
        +    },
        +    "found": {
        +      "type": "boolean"
        +    },
        +    "platform": {
        +      "type": "string"
        +    },
        +    "title": {
        +      "type": "string"
        +    },
        +    "transcript_page_url": {
        +      "type": "string"
        +    },
        +    "truncated": {
        +      "type": "boolean"
        +    },
        +    "url": {
        +      "type": "string"
        +    }
        +  },
        +  "required": [
        +    "found"
        +  ],
        +  "type": "object"
        +}
  2. 2 tool updates
    • First observedget_product_info
    • First observedget_public_transcript

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables search across videos you've watched via transcripts, on-screen text, and frames, citing exact timestamps. Point it at videos, channels, or playlists; it indexes everything locally and answers queries with deep links to the exact second.
    2
    MIT
  • F
    license
    Not graded
    quality
    D
    maintenance
    Builds a searchable knowledge base from YouTube video transcripts with hybrid semantic and keyword search. Allows LLM assistants to search, organize, and retrieve timestamped information from videos you've watched.
    3
    -
  • F
    license
    B
    quality
    Not graded
    maintenance
    Enables extraction and processing of YouTube video transcripts from individual videos, channels, and playlists. Supports transcript search, batch processing, multiple output formats (JSON, text, SRT, VTT), and bulk operations across multiple videos.
    11
    34 npm
    -
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources