Skip to main content
Glama

tascan_get_receipt

Read-onlyIdempotent

Fetch the signed Action Receipt (Ed25519 JWS) for one completed task by completion_id (tascan_get_task -> completions[].id). Returns a readable summary (what, who, verification, evidence hashes, outcome, ledger chain) plus receipt_id/serial/kid, the compact JWS and the public verify URL. Verify offline against the JWKS or online by POSTing a JSON body whose jws field holds the compact receipt. Read outcome and verification separately: outcome completed = the executor returned and a result was recorded; verification.result = the verdict of a named policy; all-null verification with reason no_policy_run = no policy ran. Never treat outcome=completed as success without a policy verdict you trust (protocol 8.3 C11). Verifier: 6.8. profile=public returns the separately signed public export profile (protocol 6.10): it withholds the raw org, list, project, worker, run and trace ids (each a 16-hex id_hash) and storage locators, and binds to the full receipt - the form for anyone outside the org. Read tier.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
profileNofull (default) = the org view with the unsigned private block; public = the separately signed public export profile: no raw org, list, project, worker, run or trace id (each is a 16-hex id_hash), no storage locators, plus a binding to the full receipt it was derived from - the form to hand to anyone outside the org
completion_idYestask_completions.id (UUID) - from tascan_get_task -> completions[].id

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • changedInput schema / properties / profile / description
      Previous value: -"full (default) = the org view with the unsigned private block; public = the separately signed public export profile: no raw org id, worker id, run id or trace id (each is a 16-hex id_hash), plus a binding to the full receipt it was derived from - the form to hand to anyone outside the org"New value: +"full (default) = the org view with the unsigned private block; public = the separately signed public export profile: no raw org, list, project, worker, run or trace id (each is a 16-hex id_hash), no storage locators, plus a binding to the full receipt it was derived from - the form to hand to anyone outside the org"
  2. Changed1 schema field changed
    • addedInput schema / properties / profile
      Added value: +{
      +  "description": "full (default) = the org view with the unsigned private block; public = the separately signed public export profile: no raw org id, worker id, run id or trace id (each is a 16-hex id_hash), plus a binding to the full receipt it was derived from - the form to hand to anyone outside the org",
      +  "enum": [
      +    "full",
      +    "public"
      +  ],
      +  "type": "string"
      +}
  3. Added

TDQS

A4.6/5.0
Behavior5/5

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

Annotations declare readOnlyHint, idempotentHint, and destructiveHint=false, and the description aligns with these (read operation). It adds significant behavioral context: explains the return contents (summary, JWS, verify URL), verification methods (offline/online), the distinction between outcome and verification.result, and the security caveat about not treating outcome=completed as success without a policy verdict. This goes beyond annotations to disclose how the tool behaves and what the results mean.

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 information-dense but not overly long. It front-loads the primary purpose and source of the required parameter, then covers verification, outcome interpretation, and the profile variant. While comprehensive, it is somewhat dense and could be slightly more scannable, but every sentence provides necessary context. Slight reduction could be made, but it remains focused.

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 read-only tool with rich annotations and fully described parameters, the description covers the essential aspects: what is returned, how to verify, the meaning of key fields, and the security caveat. It even references protocol sections for deeper context. Given no output schema, the description provides sufficient guidance on the return structure and interpretation. It is complete for an agent to use correctly.

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 schema already provides descriptions for both parameters with 100% coverage. The description adds value by explaining the completion_id source (from tascan_get_task -> completions[].id) and elaborating on the profile enum's full vs. public distinction, clarifying the public profile's privacy implications. This enriches beyond the schema's own descriptions, though the schema already carries most 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 fetches a signed Action Receipt for a completed task by completion_id, with a specific identifier source (tascan_get_task -> completions[].id). It distinguishes its purpose from siblings by focusing on receipt retrieval for completed tasks, not creation, listing, or other operations.

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 explains when to use it (for a completed task's receipt) and how to obtain the completion_id, but does not explicitly contrast it with alternative tools for similar purposes (e.g., get_task). It provides context on the profile parameter and the protocol sections referenced, but no direct '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.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.