Skip to main content
Glama

create_market_order

Post sell or bounty orders on the Crowns marketplace to trade territory, passage, watchtower vision, or mercenaries, with bounty funds escrowed via x402.

Instructions

Post a deal on the structural marketplace. SELL types list free - money moves when someone buys and the system executes instantly: order_type="territory" with deliverable {"polygon_id": "..."} sells one of your tiles (not your capital/last tile); "passage" with {"duration_hours": N} sells army passage through ALL your lands for N hours (guaranteed - you cannot revoke it while paid); "information" with {} sells your current watchtower vision (the system serves your TRUE live coverage to the buyer at fill time). BOUNTY escrows your price from your wallet NOW (x402) and pays it in full to the first kingdom whose deed the system verifies: {"kind": "strike", "target_kingdom_id": "...", "min_committed_army": N} pays for a resolved assault/raid against the target; {"kind": "war_participation", ...} pays for joining a war against the target with at least N committed army. MERCENARIES sell your soldiers by the number: {"count": N} hands N of your men to the buyer for a fixed term - they fight in HIS assaults (never in anyone's defence), and for the whole term your OWN barracks ceiling drops by N, so you lose the capacity, not just the bodies. The survivors walk home when the term ends; the ones who die do not. You are paid in full at the fill and keep the money either way. Two readings of this, both true: if you are still racing for the table, hiring men is how you out-weigh a defender who out-builds you; if the table has already left you behind, selling your army is how it still earns. You receive the full price on any sale - no marketplace rake. Optional note = free-text flavor, not enforced.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteNoOptional free-text context shown with the listing (not enforced)
priceYesPrice in USDC
api_keyYesYour Crowns API key
order_typeYesterritory | passage | information | bounty
deliverableNoThe typed deliverable payload for the order type (see tool description)
addressed_toNoOptional kingdom name or UUID - a private listing only that kingdom can buy
expires_in_hoursNoOptional listing TTL in hours - sell listings default and cap at the rule of six (6h: an unfilled listing is a stale price); bounties may run longer (the server caps per type)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior5/5

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

With no annotations provided, the description carries the full burden and does so well: bounty escrows the price NOW via x402 and pays on verified deed, passage cannot be revoked while paid, information delivers TRUE live vision at fill time, mercenaries drop your barracks ceiling for the term with survivors returning and dead men not, and you receive full price with no marketplace rake. These are exactly the non-obvious behavioral traits an agent needs.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The technical content is dense and front-loaded on the action, which is good, but the closing philosophical paragraph ('Two readings of this, both true...') and the restated note semantics add length that does not help invocation. Appropriate size for a five-branch type system, but not every sentence earns its place.

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 7-parameter, nested-object, no-output-schema, no-annotation mutation tool, the description covers the payload shapes, the economic/escrow mechanics, timing behavior, and private-listing/expiry context that an agent needs to call it correctly. Nothing material is missing.

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?

Schema coverage is 100%, but the schema's 'deliverable' field explicitly defers to the tool description, and the description fully compensates by specifying per-type payloads ({polygon_id}, {duration_hours}, {}, {kind, target_kingdom_id, min_committed_army}, {count}). Price, note, and order_type are covered by schema; expires_in_hours and addressed_to are not elaborated in the description, keeping this from a 5.

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?

Opens with a specific verb+resource ('Post a deal on the structural marketplace') and then enumerates the five order types with their distinct mechanics, which cleanly separates it from siblings like browse_market, buy_market_order, and cancel_market_order. An agent can identify the create/listing action without opening the schema.

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?

It gives rich guidance on which order_type to choose and even a strategic framing for mercenaries ('if you are still racing for the table... if the table has already left you behind...'). It does not explicitly name sibling alternatives or say when *not* to use this tool (e.g., vs cancel/buy), so it stops short of full routing guidance.

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