Skip to main content
Glama

Agent Tool Release Tracker — buy per-query in-session (techlaunchwatch)

get_agent_contract

Read-onlyIdempotent

✅ No API key needed — call this now. Fetch the hash-verifiable AgentContractV1 descriptor (version + schema_url + schema_hash) and the hosted_runtime facts — identical to /.well-known/agent.json. Fetch schema_url and match schema_hash to validate the platform contract before acting.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
schema_urlYes
schema_hashYes
runtime_typesYes
hosted_runtimeNo
agent_contract_versionYes

Schema Changelog

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

  1. First observed

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior. The description adds genuinely useful context beyond those hints: no API key is required, the payload is hash-verifiable, and it matches the well-known agent contract endpoint. This enriches the agent's understanding of the tool's trust and safety profile.

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 short, front-loaded with the most important fact ('No API key needed'), and includes a concrete validation workflow. The emoji and imperative 'call this now' are slightly informal but not wasteful. The only minor redundancy is that fetching schema_url and matching schema_hash restates fields already listed, but it does so to explain the tool's purpose.

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 zero-parameter, read-only tool with rich annotations and an output schema, the description covers everything an agent needs: authentication burden, what the return payload represents, and how to use the returned data for contract validation. There is no missing behavioral or usage context that would prevent correct invocation.

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 tool takes zero parameters, so the baseline is 4. The schema's own description adds that the owner is derived from the authenticated principal, and the tool description adds no conflicting or confusing parameter information. Nothing is missing.

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 clearly states a specific verb ('Fetch'), a specific resource ('AgentContractV1 descriptor'), and the exact contents (version + schema_url + schema_hash, hosted_runtime facts). It even equates the output to /.well-known/agent.json, making the purpose unambiguous. However, it does not explicitly distinguish itself from sibling tools like verify_contract, so it falls 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 Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives an implied usage directive: 'call this now' and 'before acting' suggest this should be an early validation step. It also explains why it is safe to call ('No API key needed'). But it does not explicitly state when not to use this tool or compare it with alternatives among the siblings, so the guidance is mostly implicit.

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

B3.2/5.0
Disambiguation2/5

Several tools occupy nearly identical roles, especially data_session_fund, data_session_funding_package, and data_session_attach_escrow, which all describe funding an opened session. The guidance pair a2awire_guide/get_recomm ended_action and onboarding pair register/onboard_start also blur boundaries. An agent would frequently need to read fine-grained details to pick the correct tool.

Naming Consistency3/5

Most tools use snake_case and the data_session_* group provides some consistency, but conventions mix: a2awire_guide is a noun, register is a bare verb, and onboard_start/hire_and_execute/verify_contract follow different verb patterns. It remains readable, but it is not a uniform verb_noun system.

Tool Count3/5

16 tools is at the heavy end for a focused per-query data listing flow, and the funding step is represented by three overlapping tools plus two guidance-oriented tools. A leaner set around the data_session lifecycle plus the needed marketplace hooks would be more appropriate.

Completeness3/5

The core buy-per-query flow (register, preview, open, fund, query, check earnings) is present, but there are notable gaps: no session status/remaining-queries tool, no close/refund path, and only one data listing is exposed. The extra A2AWire tools hint at a broader marketplace but omit obvious lifecycle pieces such as listing management or job posting.

Resources