Skip to main content
Glama

submit_experience

Add a supplier/operator and one of their experiences (with price) to 1001locals. One call creates the operator, the listing and its price. New operators get their first 100 bookings free, then a flat 5% commission forever. No account needed; the listing is created as in_review and appears in the public catalog after moderation. Call get_submission_schema (and list_categories) first. Returns a preview_url.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cityYes
nameYesoperator / business name
emailNo
phoneNo
priceNoprice per person (adult), optional
titleYespublic name of the experience
countryNoItaly
categoryNoone of list_categories values (optional; guessed if omitted)
currencyNoEUR
image_urlNo
languagesNo
source_urlNo
descriptionNowhat the guest gets (<=600 chars)

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does well: it discloses the create effect, commission model, moderation, in_review status, no account required, and returns a preview_url. Missing details like idempotency or error handling prevent a 5.

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?

Four sentences, each adding distinct value: purpose, creation behavior, commission/moderation, prerequisites, and return value. No fluff; information is front-loaded.

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 complex 13-parameter mutation with no output schema, the description covers the critical aspects: state change, moderation, commercial terms, prerequisites, and return URL. It doesn't describe all parameter defaults or edge cases, but the essentials are present.

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?

Schema coverage is only 38%, so the description needed to compensate, but it only mentions 'price' and 'category' lightly. It doesn't explain the semantics of required fields (title, city, name) beyond the schema, nor optional fields like email/phone/image_url, leaving the agent to infer.

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 begins with a specific verb ('Add') and clearly identifies the resource (supplier/operator and experience). It states exactly what the tool accomplishes in one call, which distinguishes it from sibling read/list tools.

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 explicitly tells the agent to call get_submission_schema and list_categories first, providing clear prerequisites. However, it doesn't explicitly state when not to use it or name alternative tools, so it falls just short of a 5.

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

A4/5.0
Disambiguation5/5

Each tool targets a clearly distinct purpose: get_experience is by ID, search_experiences is a query, list_* tools enumerate reference data, get_offer explains pricing, and submit_experience is the write operation. No tools overlap in their core responsibilities.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using lowercase and underscores: get_experience, get_offer, list_categories, search_experiences, submit_experience. There are no mixed conventions or vague verbs like 'process' or 'do'.

Tool Count5/5

Eight tools is well within the ideal 3-15 range for a catalog server. Each tool is necessary for the core workflows: browsing reference data, searching, retrieving details, understanding submission requirements, and submitting.

Completeness4/5

The tool set covers the full lifecycle from discovery (search, get, list) to creation (submit) with supporting schema and pricing information. Minor gaps exist, such as no update/delete operation for experiences and no explicit 'get all' listing, but these are not critical given the submission goes through moderation.

Resources