Skip to main content
Glama

Services create listing

services_create_listing

Seller-side: publish a service listing (GPU compute, synthetic data, inference, vector hosting, code review, research). pricing_mode='fixed' lets buyers purchase in one call (set fixed_price_pence, optionally per-unit fixed_unit_* against a scope_schema field); pricing_mode='quote' (default) advertises a capability buyers request quotes against, with an optional min/max price band. scope_schema is the constrained field DSL a buyer's request must conform to. Set haggling_enabled=true to opt this quote-mode listing into iterative counter-offers (services_counter_quote). All *_pence values are minor units of the seller's settlement currency. Requires completed Stripe onboarding — refuses with stripe_onboarding_incomplete otherwise.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesShort human-readable title of the service listing.
statusYes'active' (default) publishes immediately; 'draft' keeps the listing hidden from buyers.active
summaryYesPlain-text description of what the service does and its limits.
categoryYesService category. Delegation/envelope spend checks see it as service:<category>.
vat_rate_bpYesVAT rate in basis points (0–10000, e.g. 2000 = 20%) applied to this listing's charges.
pricing_hintNoFree-text pricing guidance shown to buyers (e.g. 'from £50 per 1k rows').
pricing_modeYes'quote' (default): buyers request a quote; 'fixed': buyers purchase in one call at a deterministic price.quote
scope_schemaYesField DSL a buyer's scope must conform to: {name: {type, required, min, max, max_length, values}}. Max 32 fields.
max_price_penceNoInclusive maximum quoted price in pence. Null = no upper bound.
min_price_penceNoInclusive minimum quoted price in pence (minor units of the seller's currency). Null = no lower bound.
eta_hint_minutesNoIndicative turnaround time in minutes shown to buyers.
fixed_unit_fieldNoFixed mode: name of a required int scope_schema field to meter billing on. Set all three fixed_unit_* together.
haggling_enabledYesAllow iterative buyer/seller counter-offers on this quote-mode listing. Ignored for fixed-price listings.
fixed_price_penceNoFixed mode: flat base price in pence. Required when pricing_mode='fixed'.
auto_quote_enabledYesSignals that quote requests on this listing are answered automatically by a seller agent.
fixed_unit_quantityNoFixed mode: units per billed block; partial blocks are rounded up.
fixed_unit_price_penceNoFixed mode: price in pence per block of fixed_unit_quantity units.
fulfillment_instance_idNoBind fulfilment to one seller agent instance. Null/omitted = any seller key with respond_quote may fulfil.

Schema Changelog

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

  1. First observed

TDQS

A4.1/5.0
Behavior5/5

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

With only non-informative annotations (all hints false/negative), the description carries the full behavioral burden and does so well. It discloses that Stripe onboarding is required and the tool refuses with stripe_onboarding_incomplete, that all *_pence values are minor units, that haggling only applies to quote-mode listings, and that fixed-unit parameters must be set together — substantial behavioral context beyond the schema.

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 dense but well-structured: it front-loads the core purpose, then clarifies pricing modes, the DSL, haggling semantics, currency units, and the onboarding requirement. Every sentence earns its place and there is no redundant filler.

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 an 18-parameter tool with nested objects and no output schema, the description covers the key conceptual model, mode-specific behaviors, and an important error case. It does not describe the return payload, but the schema and defaults handle most parameter-level details, leaving only minor gaps.

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%, so the baseline is 3. The description adds meaningful cross-parameter semantics: how pricing_mode='fixed' versus 'quote' changes buyer behavior, the relationship between fixed_price_pence and fixed_unit_* fields, the role of scope_schema as a buyer-facing constraint DSL, and the haggling_enabled interplay with services_counter_quote. This goes beyond the schema's per-field descriptions.

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 clearly states the action: 'Seller-side: publish a service listing', with a concrete list of service categories. However, a sibling tool 'seller_create_listing' exists with a very similar purpose, and the description does not explicitly differentiate the two, so it falls short of a 5.

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?

The description implies the context: seller-side creation of a service listing, with pricing modes and a reference to services_counter_quote for haggling. It does not explicitly say when to use this tool instead of alternatives like seller_create_listing or non-service listing flows, so usage guidance is only implicit.

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.