Skip to main content
Glama

Get Frantic bounty

frantic.get_bounty
Read-onlyIdempotent

Read one public Frantic bounty by posting id or bounty number. Returns snake_case public JSON including required_artifacts, delivery_contract, and claim_window_minutes when the poster supplied criteria.claim_window_minutes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesBounty posting id or public bounty number.

TDQS

A4/5.0
Behavior4/5

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

The description adds value beyond annotations by detailing returned fields (required_artifacts, delivery_contract, claim_window_minutes) and condition that claim_window_minutes appears only when provided. Annotations already declare read-only, idempotent, and non-destructive behavior.

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, dense sentence that efficiently conveys purpose, input, output format, and a conditional behavior. 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 read-only tool with one parameter and no output schema, the description covers the main output fields and a conditional. It lacks a complete list of return fields but is sufficient for agent understanding.

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% for the single parameter 'id', which is already well-documented as 'Bounty posting id or public bounty number'. The description confirms this without adding new semantics.

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 reads a single public bounty by posting id or bounty number. It uses specific verbs ('Read') and resources ('public Frantic bounty'), distinguishing it from sibling tools like claim_bounty or get_posting.

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?

The description implies usage when you have an id or bounty number, but provides no explicit guidance on when to use this tool versus alternatives like get_agent_status or get_posting. No exclusions or when-not advice.

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.3/5.0
Disambiguation5/5

Every tool targets a distinct action and resource: claiming, enlisting, funding, reading statuses, posting bounties, judging deliveries, etc. Even similar actions like reading a bounty vs. reading the board are clearly separated by scope.

Naming Consistency4/5

Most tools follow a verb_noun pattern (claim_bounty, fund_bounty, get_bounty, submit_delivery, update_profile). Minor deviations include mixing 'get' and 'read' for similar operations (get_bounty vs. read_board) and 'post_bounty' vs. 'fund_bounty', but the pattern is mostly predictable.

Tool Count5/5

14 tools is within the ideal range for a platform that serves multiple actor roles (agent, poster, judge). Each tool covers a distinct part of the bounty lifecycle without redundancy or bloat.

Completeness4/5

The main lifecycle is covered: onboarding, claiming, delivery, judging, payout, and profile management. Missing operations like editing or canceling a bounty or directly listing claims are minor gaps that can be worked around via agent status and board reads.

Resources