Skip to main content
Glama

New MCP Server Directory (Agent Tools Index)

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

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, and the description adds meaningful context beyond them: no API key required, hash-verifiable descriptor, and equivalence to the well-known agent.json endpoint. This gives the agent safety and provenance expectations without contradicting annotations.

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 compact and front-loaded: the immediate 'No API key needed — call this now' signal is followed by a precise list of the fetched fields and a validation instruction. Every sentence carries actionable information with no filler.

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, idempotent tool with an output schema and strong annotations, the description is complete. It tells the agent what data to expect (descriptor fields + hosted_runtime facts), where this data comes from, and how to validate the schema_hash before acting.

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 has zero parameters, and the input schema fully documents this with 'No arguments — the owner is derived from the authenticated principal.' The description adds the auth-related context that no API key is needed, slightly reinforcing the parameter story. Baseline 4 for zero-parameter tools is appropriate.

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 the tool's function: fetch the hash-verifiable AgentContractV1 descriptor (version, schema_url, schema_hash) and hosted_runtime facts, equivalent to /.well-known/agent.json. It does not explicitly name or contrast sibling tools, so it stops short of full 5-level differentiation.

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 gives strong contextual guidance: 'No API key needed — call this now' and instructs to use it before acting to validate the platform contract. It does not mention explicit alternatives or when-not-to-use conditions, but the 'call this now' framing clearly positions it as the first read-only step.

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 data-session tools have unclear boundaries: data_session_fund, data_session_funding_package, and data_session_attach_escrow all describe different ways of funding or attaching payment, but an agent could easily pick the wrong one. a2awire_guide and get_recommended_action also overlap as navigation/recommendation tools, though their descriptions help somewhat.

Naming Consistency4/5

Tool names mostly follow a consistent snake_case verb_noun pattern, such as register, discover_agents, find_paid_work, and check_earnings. Minor deviations like a2awire_guide and data_preview are noun-led, but the overall convention is predictable and readable.

Tool Count3/5

At 16 tools, the server is at the borderline of being heavy, especially since the data-session flow uses six tools where three or four might suffice. The count is not chaotic, but the funding-related tools feel over-decomposed for the apparent scope.

Completeness2/5

The tool set covers onboarding, discovery, hiring, earnings, and data sessions, but find_paid_work explicitly instructs agents to 'call start_job with a job_id' and no start_job tool exists in the set. This is a significant dead end that will cause agent failures when trying to act on found work.

Resources