Skip to main content
Glama

Server Details

El juicio de una persona real (no un LLM) por $0.10 USDC en Base. Vía Telegram.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A4.3/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have clearly distinct roles: ask_human_verdict creates a request and get_human_verdict retrieves the result. There is no overlap or ambiguity between them.

Naming Consistency5/5

Both tools follow a consistent verb_noun pattern (ask_human_verdict, get_human_verdict), making the API predictable and intuitive.

Tool Count4/5

With only 2 tools, the server is minimal but appropriately scoped for its specific purpose (requesting and polling a human verdict). The thin count is justified by the narrow domain, though it could be seen as slightly sparse.

Completeness4/5

The tool surface covers the core lifecycle: creating a request and polling its status. There is no explicit cancel or update operation, but the 7-day expiry handles abandonment, making the workflow complete for its intended use.

Available Tools

2 tools
ask_human_verdictPedir el veredicto de una persona realAInspect

Pagá $0.10 USDC en Base por el juicio subjetivo/cultural de una persona real (no un LLM) sobre una pregunta — especializado en contexto argentino. Sin pago adjunto devuelve los requisitos de pago x402; con el pago, crea el ticket y devuelve {ticket, resultToken, poll}. La respuesta del humano llega de forma asíncrona — usá get_human_verdict para pollear.

ParametersJSON Schema
NameRequiredDescriptionDefault
labelsNoCSV de 2-6 respuestas categóricas posibles, ej. "natural,traducido"
contextNoContexto extra que ve el humano
questionYesLa pregunta de juicio subjetivo

TDQS

A4.2/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It discloses the paid nature ($0.10 USDC on Base), the conditional behavior based on attached payment, the returned object shape ({ticket, resultToken, poll}), and asynchronous delivery. It doesn't cover payment attachment mechanics or failure modes, but it is substantially transparent.

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 two sentences with no filler. It front-loads the payment/cost, then the mode-dependent behavior, then the async handoff. Every sentence earns its place.

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

Completeness4/5

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

Despite having no output schema and no annotations, the description covers the core flow: payment requirements, ticket creation, returned keys, async nature, and the polling sibling. The only notable gap is not explaining how payment is actually attached (x402 mechanics), which is a minor omission for a paid tool.

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 100%, so the baseline is 3. The description adds general context about labels being CSV and context being visible to the human, but it doesn't meaningfully extend parameter semantics beyond what the schema already provides.

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 identifies a clear verb+resource: 'Pagá ... por el juicio subjetivo/cultural de una persona real', and emphasizes it is not an LLM and is specialized for Argentine context. It also differentiates from the sibling get_human_verdict by describing this tool as creating the ticket while the sibling polls for results.

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 the two payment modes (no payment returns x402 requirements; with payment creates the ticket) and explicitly instructs to use get_human_verdict for polling after the async response. It doesn't state formal when-not-to-use criteria, but the async handoff is clearly communicated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_human_verdictConsultar el resultado de un veredicto pedidoAInspect

Gratis. Pollea el estado de un ticket creado con ask_human_verdict — "pending" mientras la persona todavía no contestó, "completed" con el veredicto, o "expired" si pasaron 7 días sin respuesta.

ParametersJSON Schema
NameRequiredDescriptionDefault
ticketYesEl ticket devuelto por ask_human_verdict
resultTokenYesEl resultToken devuelto por ask_human_verdict

TDQS

A4.2/5.0
Behavior3/5

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

No annotations are provided, so the description must carry the burden. It does disclose the polling behavior and the meaning of each status, adding value beyond the schema. However, it doesn't mention the cost of polling (it says 'Gratis' but not rate limits), how to handle errors (e.g., invalid ticket), or whether it's a read-only operation. Still, the core behavioral traits are covered.

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 sentence that is concise and front-loads the key information (Gratis, polls). It clearly explains the states without fluff. Every word earns its place.

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

Completeness4/5

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

For a simple polling tool with two parameters and no output schema, the description covers the essential behavior: states and their meanings, and the expiration. It could add a note on error handling or what happens if the ticket is invalid, but given the simplicity, it's nearly complete.

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 100%, so the schema fully documents both parameters (ticket and resultToken). The description adds context by stating they come from ask_human_verdict, but doesn't add additional syntax or format details. Baseline 3 is appropriate.

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 polls the status of a ticket and lists the three possible states (pending, completed, expired) with meanings. It specifies the resource (ticket from ask_human_verdict) and the verb (pollea). It distinguishes itself from its sibling by focusing on querying, not creating.

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?

The description explicitly says it is for polling a ticket created by ask_human_verdict and describes the states and the expiration period. This provides clear context for when to use it versus the sibling, which is for creating the ticket. It also implies it's for checking results after creation.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 2 tool updates
    • First observedask_human_verdict
    • First observedget_human_verdict

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    F
    maintenance
    Lets an AI agent hire and pay a verified human: post real-world tasks (voice, observation, judgment) and pay in USDC via a non-custodial x402 auth-capture escrow on Base, budget frozen at deploy. Humans verify their X identity before submitting.
    8
    33 npm
    1
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources