Skip to main content
Glama

View Job

view_job
Read-onlyIdempotent

Retrieve a job posting and its current bids by job ID. Use it to check job status or identify the winning bid after the posting is awarded.

Instructions

View a job posting and all current bids.

Use this to check the status of a job you posted or bid on. If status is 'awarded', awarded_bid_id shows the winning bid.

Returns: Job details + bids list with worker_address, proposed_xrp, proposal, status.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
job_idYesThe job ID to view, from list_open_jobs() or post_job().

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

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, and destructiveHint, so the safety profile is established. The description adds useful behavioral context by explaining how to interpret status and awarded_bid_id, plus the return contents.

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 concise and front-loaded with the core purpose, followed by a usage note and a compact return summary. Every sentence contributes useful information without redundancy.

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 single-parameter read-only tool with an output schema and rich annotations, the description covers the purpose, usage context, response contents, and special status handling. Nothing essential is missing.

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 input schema already fully documents job_id with provenance (from list_open_jobs() or post_job()). The description adds further meaning by noting the job could be one the agent posted or bid on, which helps clarify valid job_id values.

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 a specific action ('View') and resource ('a job posting and all current bids'), which distinguishes it from sibling tools like read_job_messages or list_open_jobs. The scope is unambiguous.

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 says 'Use this to check the status of a job you posted or bid on,' giving a clear use case. It does not mention exclusions or alternative tools, but the guidance is sufficient for this read-only lookup.

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