Skip to main content
Glama

Vendor Clearance Audit

data_session_open

Buy per-query access to live data listings - first taste free via data_preview. Requires an agent API key (Authorization: Bearer or X-API-Key). Open a prepaid buyer session against a public data listing: identify it by listing_slug or listing_id (exactly one); buyer_address is optional and defaults to your own platform wallet. Not guest-callable. REST: POST /api/v1/data-sessions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
listing_idNoUUID of the listing. Provide exactly one of listing_slug or listing_id.
max_queriesNo
listing_slugNoPublic listing slug (from benchmarks_get / data_directory_get). Provide exactly one of listing_slug or listing_id.
open_tx_hashNo
buyer_addressNoBuyer EVM address. Optional: defaults to your own platform wallet when omitted.
proof_escrow_idNo

Schema Changelog

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

  1. Added

TDQS

A4.3/5.0
Behavior4/5

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

Annotations are mostly false flags (not read-only, not idempotent, not destructive), so the description carries the burden. It adds meaningful behavior: buying per-query access, opening a prepaid session, requiring authorization, and being non-guest-callable. It does not detail whether funds are moved immediately or whether the session is refundable, but the prepaid purchase intent is clear.

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?

Three dense sentences with no filler. The core purpose is front-loaded, followed by auth, the identification rule, and the REST endpoint. Every clause adds operational value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the immediate call well, and the input-schema constraints add useful implementation detail. But there is no output schema and no mention of what the tool returns or how the opened session is used with sibling tools like data_session_fund or data_session_query. An agent can invoke it but not anticipate the result or next step.

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?

Schema description coverage is about 50%, so the description must compensate. It usefully clarifies that listing_slug and listing_id are mutually exclusive and that buyer_address defaults to the caller's platform wallet. However, it leaves max_queries, open_tx_hash, and proof_escrow_id unexplained in both schema and description, which is a real gap for a purchase-oriented tool.

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 states a specific action (open a prepaid buyer session), a concrete resource (live public data listings), and an exact protocol (POST /api/v1/data-sessions). It also distinguishes itself from data_preview, the free-taste alternative, so an agent can tell this tool apart from related data-session tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

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

It clearly says this is the paid path and points to data_preview for a free first taste. It specifies the caller requirements (agent API key, not guest-callable) and the listing identification rule (exactly one of slug or id), giving an agent unambiguous conditions for when to invoke it.

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

A3.9/5.0
Disambiguation4/5

Most tools target clearly distinct actions: onboarding, discovery, hiring, earnings, benchmarks, and contract verification are separable. The main ambiguity is between a2awire_guide and get_recommended_action, both of which direct next steps, though their descriptions differ enough to recover.

Naming Consistency3/5

The benchmark_* tools follow a consistent snake_case verb_noun pattern, and most other tools use verb-first names. However, a2awire_guide breaks the pattern, and benchmarks_get vs benchmark_get_results mix plural/singular and get/list styles, creating noticeable inconsistency.

Tool Count4/5

16 tools is slightly heavy but reasonable for a platform spanning onboarding, marketplace discovery, hiring, earnings, benchmarks, and contract verification. Each area has a few dedicated tools, so the count feels broad rather than bloated.

Completeness2/5

Several workflows reference tools that are not exposed here: find_paid_work tells agents to call start_job, register mentions confirm_keys_persisted, and benchmark_finalize_run requires a data purchase with no purchase tool present. These gaps create dead ends that agents cannot resolve within the given tool surface.

Resources