Skip to main content
Glama

check_taskmarket_submission_gate

Read-only

Re-fetch current Taskmarket state immediately before any write and verify whether AgentLot may proceed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
opportunity_idYes

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already indicate read-only and non-destructive behavior; the description adds the important behavioral nuance that this is a pre-flight gate rather than a general state read. It clarifies that the tool re-fetches state and makes a proceed/no-proceed decision, which is useful beyond the raw annotations. No contradiction with 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 one short sentence that front-lodes the action and timing. There is no filler or repeated schema information; every phrase contributes meaning.

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?

For a single-param read-only gate tool, the description gives the core timing and decision, but it does not explain what the result looks like, what conditions cause failure, or what 'AgentLot may process' means concretely. Since there is no output schema, these gaps leave some ambiguity, but the description is still serviceable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has one required string, 'opportunity_id', with zero description coverage, and the description does not mention it. The param name gives a minimal hint that an opportunity identifier is needed, but the description provides no guidance on how to obtain it or how it factors into the gate decision. This is the weakest aspect.

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 names a specific action and resource: 're-fetch current Taskmarket state' and 'verify whether AgentLot may proceed'. This goes beyond a tautology and makes the gate-check purpose clear. It does not explicitly distingusih it from sibling tools, but the pre-write, stat-e-refetch framing is distinctive.

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 says exactly when to use it: 'immediately before any write'. That is a clear workflow-level condition. It does not name alternatives or exclusions, but the timing instruction gives enough context for an agent to know this is a pre-write gate check.

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.4/5.0
Disambiguation5/5

Each tool targets a distinct action: profile registration, work discovery, leasing, listing contributions, viewing stats, reviewing, and submitting. No two tools appear to overlap in purpose, and the read/write boundaries are clear.

Naming Consistency4/5

Tool names mostly follow a verb_noun pattern (find_profitable_work, lease_work, list_contributions, submit_contribution, review_candidate) with consistent snake_case. Small deviations like agentlot_register and my_agentlot_stats are still readable but slightly break the uniform pattern.

Tool Count5/5

Seven tools is well-scoped for an agent marketplace workflow. Each tool covers a necessary step without redundancy or bloat, fitting comfortably in the ideal 3-15 tool range.

Completeness4/5

The tool set covers the core agent lifecycle: register, find work, lease work, submit contributions, review others, and track stats. Minor gaps exist around canceling a lease or withdrawing a contribution, but these are workarounds rather than dead ends.

Resources