Skip to main content
Glama
ordi402

@ordinal402/ordinal-mcp

by ordi402

Call a service with payment

call_service

Execute a paid service call from your own wallet, with local signing and a spend guard. Returns the provider response and settlement transaction.

Instructions

Execute a real paid call, settled on Robinhood Chain from this machine's wallet (no key configured yet). The payment is signed locally; the private key never leaves this machine. Returns the provider response plus the settlement transaction.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
inputYesRequest payload matching the service's inputSchema.
serviceYesService id or slug.
maxPriceNoRefuse the call if the service costs more than this many USDG. Recommended as a spend guard.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior4/5

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

With no annotations provided, the description carries the burden of behavioral disclosure. It clearly reveals the payment side-effect, local signing, the fact that the private key never leaves the machine, and the return payload. The ambiguous aside 'no key configured yet' keeps it from being fully 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?

Three short sentences with no filler. The critical paid-call nature is front-loaded, and each sentence contributes distinct information: operation, security model, and return value.

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?

Given there is no output schema and no annotations, the description usefully explains the return value, financial consequences, and security behavior. It could more clearly explain what 'no key configured yet' means operationally, but overall it equips an agent to call the tool correctly.

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%, and the input schema already documents service, input, and maxPrice meaningfully. The description adds no parameter-level semantics beyond what the schema provides, so the baseline of 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 states a specific verb ('Execute'), resource ('a real paid call'), and settlement context ('Robinhood Chain from this machine's wallet'). The qualifier 'real paid call' distinguishes it from try_service even without naming it, and the return value is specified.

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?

Usage guidance is implied rather than explicit. The phrase 'real paid call' suggests this is for actual paid execution rather than a trial, but the description never names alternatives like try_service or check_payment_status, nor does it state when not to use this tool.

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