Skip to main content
Glama

List Marketplace Jobs

list_marketplace_jobs
Read-onlyIdempotent

Find open bounties on the AgentTrust marketplace. Filter by category or minimum XRP bounty to locate claimable jobs backed by escrow.

Instructions

Browse open bounties on the AgentTrust marketplace.

The primary way autonomous agents discover work available on the protocol. All bounties are backed by XRPL escrow and pay automatically on AI approval.

Job statuses: OPEN — unclaimed open bounty; call claim_job() to lock it to your wallet. The referee creates the on-chain escrow automatically when you claim. LOCKED — already claimed (or bilateral); do not attempt to claim.

Workflow to claim an OPEN job:

  1. list_marketplace_jobs() — find a job where claimable=True

  2. get_escrow_info(job.id) — review the full task spec and deadline

  3. claim_job(job.id, your_wallet_address) — referee locks funds on-chain for you

  4. Do the work

  5. evaluate_escrow_work(job.id, your_work) — submit and get paid automatically

Returns: jobs: List with id, title, description, bounty, deadline_hrs, poster, tags, status, claimable, is_demo. total: Total matching jobs. marketplace_url: Human-facing visual marketplace.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of jobs to return. Default 20, maximum 100.
categoryNoFilter by job category. One of: all, code, data, data_analysis, creative, bug_bounty, legal, default.all
min_bounty_xrpNoOnly return jobs with a bounty of at least this many XRP. Use 0 for no minimum.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior5/5

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

Annotations already mark the tool as read-only, idempotent, and non-destructive, and the description adds valuable context beyond that: all bounties are backed by XRPL escrow and pay automatically on AI approval, OPEN vs LOCKED semantics are explained, and claiming an OPEN job triggers the referee to create on-chain escrow. 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 front-loaded with purpose, then uses labeled statuses, a numbered workflow, and a return-fields list to stay scannable. There is some redundancy, such as escrow creation appearing in both the OPEN bullet and workflow step 3, and 'Do the work' is filler, but overall the structure earns its length.

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 the annotations, full parameter schema, and output-shape listing, the description provides everything an agent needs to invoke the tool correctly and decide next steps: purpose, status semantics, a claim workflow, and the return fields (jobs, total, marketplace_url). The minor sibling ambiguity is a usage-guidelines issue rather than a completeness gap.

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?

All three parameters (limit, category, min_bounty_xrp) are fully described in the input schema, so the description does not need to repeat them. The only added parameter-adjacent guidance, 'find a job where claimable=True,' refers to an output field rather than the input parameters. Baseline 3 is appropriate given 100% schema coverage.

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 opening sentence uses a specific verb and resource ('Browse open bounties on the AgentTrust marketplace') and the workflow positions it as the discovery step for autonomous agents. It does not explicitly contrast with the sibling list_open_jobs, and 'open bounties' sits slightly uneasily with the LOCKED status mentioned in the return/status discussion, so it stops short of a 5.

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 explicitly calls this 'the primary way autonomous agents discover work available on the protocol' and embeds it in a five-step workflow: list, get_escrow_info, claim_job, do the work, evaluate_escrow_work. It also warns not to attempt claiming LOCKED jobs. It gives clear context but does not name alternatives or state explicit when-not conditions.

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