Skip to main content
Glama

socialbridge-mcp

Server Details

Unified social-media data across 10 networks: profiles, posts, search, comments, cross-search.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
IsaiahDupree/socialbridge-mcp
GitHub Stars
0
Server Listing
socialbridge-mcp

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.4/5 across 10 of 10 tools scored. Lowest: 3.8/5.

Server CoherenceA
Disambiguation4/5

Most tools target distinct resources/actions, but there is some overlap: social_posts and reddit_history both return Reddit posts, social_search and search_all both perform searches, and snapchat_spotlight overlaps with social_posts for Snapchat. However, descriptions explicitly cross-reference and clarify when to use each, so misselection is unlikely.

Naming Consistency4/5

The naming generally follows a snake_case pattern with a resource noun, using either a social_ prefix (social_posts, social_comments) or a platform-specific prefix (facebook_ads, reddit_history, threads_post). The exception is search_all, which breaks the pattern and is less noun-like compared to others.

Tool Count5/5

With 10 tools covering profiles, posts, comments, search, and platform-specific features (ads, transcripts, spotlight), the count is well-scoped for a multi-platform social data retrieval server. Each tool serves a clear purpose and the set is not bloated.

Completeness4/5

The tool set covers core read operations across major platforms, including profile, posts, comments, and search. A notable gap is the lack of a generic way to fetch a single post by URL/ID across all platforms (only threads_post offers this specifically), which may require workarounds in some use cases.

Available Tools

10 tools
facebook_adsFacebook / Meta Ad LibraryA
Read-onlyIdempotent
Inspect

Meta (Facebook/Instagram) Ad Library records as the unified Ad[] (id, pageName, adCreativeBody, adSnapshotUrl, startDate, currency, spend + impression ranges). Provide q OR pageId. GATED — needs operator-side FACEBOOK_ACCESS_TOKEN (with ads_read); returns credentials_required until set.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoFree-text search across ad creative. Provide q OR pageId.
limitNoMax results, clamped 1-100. Default 25.
pageIdNoAdvertiser Page id. Provide q OR pageId.
countryNoISO-3166 alpha-2 country (upper-cased server-side). Default US.
Behavior4/5

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

Annotations already declare read-only/idempotent/non-destructive, and the description adds the auth requirement and the 'credentials_required until set' behavior, which goes beyond the annotations. It doesn't mention pagination, but for a read-only retrieval tool this is sufficient extra context.

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: the first describes the resource and output, the second covers the query options and auth requirement. Every clause carries distinct, useful information with no filler, and the key details are 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 no output schema, the description provides a list of output fields (id, pageName, etc.), which is valuable. It also notes the gate/auth failure mode. It leaves limit clamping and country default to the schema, which is acceptable since the schema documents them, and the overall picture is complete enough for an agent to anticipate behavior.

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 coverage is 100% with descriptive parameter comments, so baseline is 3. The description repeats the q OR pageId constraint already present in the schema, but adds no new format details or clarifications. It does not add meaningful value beyond what the schema already provides.

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 identifies the tool as retrieving Meta Ad Library records, specifying the exact output shape (Ad[] with fields). It is distinct from sibling tools by naming the platform (Facebook/Instagram) and the specific data source, so an agent knows exactly when to select it.

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?

It gives direct usage instructions ('Provide q OR pageId') and states a key prerequisite (operator-side face_ACCESS_TOKEN with ads_read). It doesn't explicitly mention alternatives, but the platform-specific scope strongly implies when this tool is appropriate relative to the social_search siblings.

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

reddit_historyReddit full history (keyless)A
Read-onlyIdempotent
Inspect

Keyless full-history pull via Arctic Shift — a user's or subreddit's posts, or a keyword search across Reddit history, returned as the unified Post[]. Provide at least one of username, subreddit, or q. Optional before/after bound the window by epoch-seconds or ISO timestamp.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoKeyword to search across history.
afterNoReturn items created after this epoch-seconds / ISO timestamp.
limitNoMax results, clamped 1-100. Default 25.
beforeNoReturn items created before this epoch-seconds / ISO timestamp.
usernameNoReddit username (without u/).
subredditNoSubreddit (without r/).
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, and the description adds key context: keyless access (no auth), reliance on Arctic Shift as the data source, and a unified Post[] return shape. No contradictions with annotations, and it goes beyond what annotations provide.

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 two sentences, front-loading the core purpose ('Keyless full-history pull via Arctic Shift') before detailing scope and parameter requirements. Every sentence contributes value with no redundancy or fluff.

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?

For a tool with three distinct modes, no output schema, and six optional parameters, the description covers the essential return shape (unified Post[]), parameter requirements, and time-bounding options. It omits details like pagination beyond the limit parameter and behavior when multiple filters are combined, but these are minor gaps given the schema and annotations.

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 baseline is 3. The description adds the crucial requirement that at least one of username, subreddit, or q must be provided, which is not in the schema's required list. It also clarifies the before/after window accepts both epoch-seconds and ISO timestamps, though the schema already indicates this.

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 identifies the tool as a keyless full-history pull via Arctic Shift, covering user posts, subreddit posts, or keyword search. It distinguishes itself from siblings like social_search or social_posts by emphasizing 'full history' and 'keyless' access.

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 provides clear usage context: 'Provide at least one of username, subreddit, or q' and optional before/after bounds. It does not explicitly name alternative tools, but the full-history and keyless framing implies when it is appropriate compared to more limited search tools.

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

search_allSearch every network at onceA
Read-onlyIdempotent
Inspect

The wedge no incumbent offers: fan one search query out across the requested platforms (default: all keyless, non-disabled) in parallel, merge the unified Post[], and tag each result with its platform. Gated / disabled / unsupported / throttled engines are listed under "skipped" with an honest reason — the call still returns whatever came back.

ParametersJSON Schema
NameRequiredDescriptionDefault
qYesSearch query.
limitNoMax results, clamped 1-50. Default 10.
platformsNoComma-separated subset of platforms to query (e.g. "tiktok,youtube,threads"). Omit for all keyless, non-disabled platforms.
Behavior5/5

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

Annotations already declare read-only/non-destructive behavior. The description adds valuable behavioral details: parallel execution, merging results into Post[], tagging platform, and the 'skipped' list with reasons for gated/disabled/unsupported/throttled engines. It also discloses partial results are returned even if some fail.

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 a single dense sentence, front-loaded with purpose. The phrase 'The wedge no incumbent offers' is marketing fluff rather than functional content, slightly reducing conciseness, but the rest is efficient and information-rich.

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?

No output schema exists, so the description must explain return values. It covers the merged Post[] with platform tags, the 'skipped' list with reasons, and the guarantee of returning whatever results came back – sufficient for an aggregator tool of this complexity.

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 100%, so the baseline is 3. The description adds no new parameter meaning beyond the schema; it mentions 'default: all keyless, non-disabled' for platforms, but the schema already says 'Omit for all keyless, non-disabled platforms.' The 'clamped 1-50' for limit is already encoded in min/max.

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 specifies the action: 'fan one search query out across the requested platforms' and 'merge the unified Post[]'. It distinguishes itself from siblings by covering multiple platforms at once, and the unique scope is evident.

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 conveys a clear use case: cross-platform search in parallel. It implies this is the go-to for multi-platform queries, though it doesn't explicitly state when to prefer sibling tools for single-platform searches or provide exclusions. Context is clear but not fully explicit.

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

snapchat_spotlightSnapchat creator Spotlight feedA
Read-onlyIdempotent
Inspect

A creator's public Snapchat Spotlight feed as the unified Post[] with real view/comment/share counts. Keyless.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results, clamped 1-50. Default 20.
usernameNoAccount handle / username (without @).
Behavior4/5

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

Annotations already declare the tool safe (readOnly, idempotent, non-destructive). The description adds 'public' and 'Keyless' to clarify access needs, and 'real view/comment/share counts' specifies the metrics returned. This goes beyond annotations without contradiction.

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 a single concise sentence that packs the purpose, scope, output type, and access requirement with no wasted words.

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?

For a simple two-parameter read-only tool with complete schema and strong annotations, the description is adequate. It could mention pagination or order of results, but 'unified Post[]' hints at a standard list format.

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?

Input schema covers both parameters completely, including the clamping behavior for limit and the '@' expectation for username. The description adds no additional parameter-level details, so the schema is sufficient.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly specifies the resource (a creator's public Snapchat Spotlight feed) and the output (unified Post[] with real view/comment/share counts). It distinguishes from sibling tools by mentioning 'Keyless' and the platform-specific focus, but it lacks an explicit action verb like 'fetches' or 'retrieves'.

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

Usage Guidelines3/5

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

Usage is implied: the description notes the feed is public and keyless, suggesting it is appropriate when no authentication is required. However, it does not explicitly state when to choose this tool over alternatives such as social_posts or social_profile.

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

social_commentsGet comments / replies on a postA
Read-onlyIdempotent
Inspect

Comments / replies on one post as the unified Comment[] schema, tagged with its platform. Provide url OR postId. Keyless on TikTok, YouTube, and Threads (and a single tweet via syndication on Twitter/X). Instagram, Reddit, and Facebook need operator-side credentials; Snapchat comments are not supported keyless; LinkedIn is quarantined.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoPost URL. Provide url OR postId.
limitNoMax results, clamped 1-100. Default 20.
cursorNoOpaque pagination cursor from a previous response (where the platform supports paging).
postIdNoPlatform-native post id. Provide url OR postId.
platformYesTarget social network.
Behavior5/5

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

Discloses extensive behavioral details beyond annotations: which platforms support keyless access (TikTok, YouTube, Threads, Twitter/X via syndication), which require credentials (Instagram, Reddit, Facebook), Snapchat's lack of keyless support, and LinkedIn quarantine. These are non-obvious and add significant value.

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 core purpose, followed by a compact enumeration of platform conditions. No redundant or unnecessary text.

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?

Covers core usage and major platform caveats, but omits pagination behavior (cursor) and rate limits. Given the parameter schema documents the cursor and the annotations indicate read-only/idempotent behavior, this is acceptable for a read-only tool.

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?

Adds the 'url OR postId' constraint to clarify mutual exclusivity, which is not fully explicit in the schema. Also mentions the unified Comment[] schema. Since the schema already describes all parameters, this is incremental but meaningful.

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 'Comments / replies on one post' with a specific resource (post) and output ('unified Comment[] schema'), distinguishing it from sibling tools like social_posts or social_search.

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: 'Provide url OR postId' and enumerates platform-specific credential requirements. It does not explicitly name alternative tools, but the single-post scope and platform caveats imply appropriate usage.

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

social_postsGet an account's recent postsA
Read-onlyIdempotent
Inspect

An account's recent posts / videos / tweets / threads / pins as the unified Post[] schema (id, url, author, text, createdAt, like/comment/share/view counts, mediaType, mediaUrls, hashtags), tagged with its platform. Keyless on Instagram, TikTok, YouTube, Pinterest, Snapchat, and Threads. Twitter/X, Reddit, and Facebook need operator-side credentials; LinkedIn is quarantined. For a keyless Reddit history pull use reddit_history.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results, clamped 1-100. Default 20.
cursorNoOpaque pagination cursor from a previous response (where the platform supports paging).
platformYesTarget social network.
usernameYesAccount handle / username (without @).
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so safety profile is covered. The description adds valuable context beyond annotations: platform-specific credential requirements, LinkedIn quarantine, and the unified output schema. It does not cover error handling or rate limits, so a 4 is appropriate rather than 5.

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 compact and information-dense, leading with the core function, then enumerating the output schema, keyless platforms, credential requirements, and a specific alternative in a few sentences. No redundant or filler content.

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 multi-platform read-only tool with complexity around credentials and output unification, the description is exceptionally complete. It explicitly describes the unified Post[] schema, lists which platforms require credentials, flags LinkedIn as quarantined, and even names the sibling tool for a specific use case. This gives an agent sufficient context to select and invoke the tool correctly.

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 100%, with all four parameters well-documented including the platform enum, username without '@', limit clamping, and cursor semantics. The description adds platform context that indirectly affects the 'platform' parameter but does not alter understanding of parameter syntax or formats, so the baseline 3 applies.

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 it retrieves an account's recent posts across multiple platforms with a unified Post[] schema, listing exact fields. It distinguishes itself from sibling tools by explicitly naming reddit_history as an alternative for keyless Reddit pulls, and the title 'Get an account's recent posts' is specific.

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 explicitly states which platforms are keyless (Instagram, TikTok, YouTube, Pinterest, Snapchat, Threads) and which require operator-side credentials (Twitter/X, Reddit, Facebook), and notes LinkedIn is quarantined. It also directly recommends using reddit_history for keyless Reddit access, providing clear when-to-use and 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.

social_profileGet a social profileA
Read-onlyIdempotent
Inspect

Fetch one account profile from any supported network as the unified Profile schema (id, username, displayName, bio, url, followers, following, postCount, verified, avatarUrl, externalUrl), tagged with its platform. Keyless on Instagram, TikTok, YouTube, Pinterest, Snapchat, and Threads. Twitter/X, Reddit, and Facebook need operator-side credentials (returns credentials_required until set); LinkedIn is quarantined (platform_disabled).

ParametersJSON Schema
NameRequiredDescriptionDefault
platformYesTarget social network.
usernameYesAccount handle / username (without @).
Behavior5/5

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

Beyond the readOnly/idempotent hints in annotations, the description discloses credential requirements (keyless vs credentials_required), platform disabling (platform_disabled for LinkedIn), and enumerates the exact fields returned in the unified Profile schema. This provides meaningful behavioral context.

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 compact, with three sentences each serving a purpose: stating the core function, listing the schema fields, and covering platform-specific execution. No unnecessary words or repetition.

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 simple two-parameter read tool with no output schema, the description is fully self-contained: it explains what the tool returns (unified Profile schema), how to invoke it (platform and username), and important operational caveats (credentials and disabled platform). The agent has everything needed to select and use the tool correctly.

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 already describes both parameters fully (platform enum and username format), achieving 100% schema coverage. The description adds no additional parameter-level meaning beyond what the schema provides, so the baseline of 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 starts with 'Fetch one account profile from any supported network', clearly stating the action and resource. It also specifies the unified Profile schema and platform tagging, which distinguishes it from sibling tools like social_posts or social_comments.

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 provides clear context on platform availability: it names which platforms are keyless, which require credentials, and which are disabled. However, it does not explicitly name alternatives or state when not to use this tool, so it falls short of a 5.

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

threads_postThreads post by shortcodeA
Read-onlyIdempotent
Inspect

Fetch a single thread by shortcode or URL, including its replies, as the unified Post (with replies). Provide code OR url. Keyless.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoFull thread URL. Provide code OR url.
codeNoThread shortcode. Provide code OR url.
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and non-destructive. The description adds useful behavioral context beyond annotations: that replies are included, the response is a unified Post, and no API key is required. It does not discuss edge cases like invalid shortcodes or rate limits, but adds meaningful value.

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 extremely concise, comprising a single sentence plus two short clauses. It front-loads the main action and includes only essential details without unnecessary fluff.

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?

For a simple read-only retrieval tool with strong annotations and fully documented parameters, the description covers the key aspects: what is fetched, how to identify it, and an access requirement ('Keyless'). It does not provide a detailed output structure, but no output schema exists and the tool's simplicity reduces the need.

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 100% and both parameters are already self-explanatory ('Full thread URL', 'Thread shortcode') with the same 'Provide code OR url' guidance. The description repeats this but does not add new meaning such as which parameter to prefer or behavior when both are supplied.

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 ('Fetch'), identifies the resource (a single thread on Threads by shortcode or URL), and specifies scope ('including its replies, as the unified Post (with replies)'). This clearly distinguishes the tool from siblings like social_posts or social_comments.

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?

It gives clear context for use (provide code or URL, keyless access) and implies it is for fetching a specific Threads thread rather than general social posts. However, it does not explicitly name alternative tools or state when not to use this tool.

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

youtube_transcriptYouTube transcript / caption languagesA
Read-onlyIdempotent
Inspect

Available caption-language list (and cue segments where retrievable) for a YouTube video. Provide url OR videoId. Keyless. NOTE: actual cue text is BotGuard-gated keyless, so it is reported honestly (available:false, empty segments) rather than fabricated.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoYouTube watch URL. Provide url OR videoId.
langNoPreferred caption language (BCP-47, e.g. "en").
videoIdNo11-char video id. Provide url OR videoId.
Behavior5/5

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

The description discloses a critical behavioral trait beyond annotations: actual cue text is BotGuard-gated keyless, and the tool reports 'available:false' or empty segments rather than fabricating data. This adds important context about reliability and honesty, exceeding what readOnlyHint and idempotentHint already convey.

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 two sentences, front-loaded with the core purpose, followed by usage and a concise limitation note. Every word earns its place, with no redundancy or extraneous information.

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?

Given only three optional parameters and no output schema, the description adequately explains what the tool returns (caption-language list and cue segments where retrievable) and how it behaves when not retrievable (available:false, empty segments). This covers the essential information for correct selection and use.

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 coverage is 100% with descriptions for all three parameters. The description's 'Provide url OR videoId' adds exclusivity that is also already stated in the schema's parameter descriptions, so it does not significantly enhance parameter understanding beyond the schema.

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 returns available caption-language list and cue segments for a YouTube video, specifying the resource (YouTube video) and scope (caption languages). It is distinct from sibling tools, which are all social media related, so there is no ambiguity about what this tool does.

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 provides explicit usage instruction 'Provide url OR videoId' and notes the keyless access, giving clear context on how to invoke it. It does not explicitly mention alternatives, but the sibling tools are unrelated (social media), so the intended use case is implied and unambiguous.

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

  • A
    license
    -
    quality
    D
    maintenance
    Provides AI agents with unified access to 21 social media platforms and 105 endpoints for retrieving profiles, posts, comments, search results, trending content, and analytics without per-platform authentication.
    Last updated
    151
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    Enables posting to multiple social media platforms (X, LinkedIn, Facebook, Instagram, etc.) via a unified API, handling OAuth, media, and scheduling for each network.
    Last updated
    AGPL 3.0

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.