Skip to main content
Glama

Prepare share card

create_share_bundle
Read-onlyIdempotent

Use this when the person wants a factual social-ready caption and card intent after a bounty step. Pass the selected projection's first-party bounty_image_url when available so the original approved image remains attached to the share package. Sharing is optional and changes no funding, claim, verification, settlement, or payment state.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
stageYesShort factual stage label such as terms prepared, funding requested, solving, completed, verified, or commented.
titleYes
rewardNo
statusYes
bounty_idYes
bounty_urlYes
payment_stateNo
bounty_image_urlNoOptional first-party image URL from the selected bounty projection.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
stageYes
schemaYes
captionYes
intentsYes
sandboxNo
hashtagsYes
bounty_idYes
share_urlYes
next_actionYes
bounty_image_urlYes
evidence_boundaryYes
instagram_captionYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A3.6/5.0
Behavior4/5

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

Annotations already indicate read-only, idempotent, non-destructive behavior. The description adds relevant behavioral context by stating that sharing 'changes no funding, claim, verification, settlement, or payment state' and by explaining how the original image remains attached when bounty_image_url is passed. No contradiction with annotations.

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 compact at three sentences, front-loads the main use case, and avoids generic filler. Each sentence adds meaningful guidance, though the parameter guidance is limited.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers when to use the tool, the no-side-effect guarantee, and the key image parameter. However, with 8 parameters and only 25% schema coverage, more context about how to populate required fields or how the share card relates to sibling tools would make it more complete. The presence of an output schema mitigates some of this gap.

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

Parameters2/5

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

Schema description coverage is only 25%, with only stage and bounty_image_url described in the schema. The description adds guidance for bounty_image_url but does little to explain the meaning or expected format of the other parameters, such as title, status, bounty_url, reward, and payment_state. Since coverage is low, the description needed to compensate more.

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 states a specific purpose: producing a factual social-ready caption and card intent after a bounty step. It clearly identifies the tool's resource (share bundle/card) and the user goal, though it does not explicitly differentiate it from sibling tools like prepare_bounty_post or prepare_bounty_action.

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 gives an explicit trigger: 'Use this when the person wants a factual social-ready caption and card intent after a bounty step.' It also clarifies that sharing is optional and has no state-changing effects. However, it does not mention when not to use it or name alternative tools for related intents.

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

A3.9/5.0
Disambiguation3/5

Most tools are distinct by domain (comments, feeds, on-ramp, competitions), but prepare_bounty_action and prepare_bounty_post both trigger on an approved posting flow, and list_autonomous_bounties vs get_bounty_feed vs inspect_open_competition_v2 present overlapping read surfaces. The long 'use this when' guards help, but an agent could still select the wrong prepare or list tool.

Naming Consistency4/5

The names are almost uniformly snake_case verb_noun with predictable prefixes like prepare_, get_, and list_. Minor inconsistencies: add_bounty_comment vs list_bounty_comments (singular/plural), the v2 suffix, and compile_objective_with_cloud_agent breaks the concise verb_noun pattern.

Tool Count4/5

Thirteen tools is within the normal range for a platform covering bounty lifecycle, comments, feeds, competitions, and fiat on-ramp. However, the generic prepare_bounty_action plus separate prepare_bounty_post and several read/list variants make the set feel slightly heavier than the core domain needs.

Completeness4/5

The core bounty lifecycle (post, fund, solve/claim, complete, verify), status checks, listing, comments, and sharing are all represented. Missing explicit update/cancel or single-bounty detail operations are minor gaps because the prepare/status model and feed data cover most agent workflows.

Resources