Skip to main content
Glama

Edit one of your own Tulimoa listings

edit_listing

Update fields of a listing you own (by slug). You cannot change ownership or set review status. Any edit sends the listing back to admin review (status: pending) and it reappears publicly only after re-approval. Requires a write-scoped Tulimoa login.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
mcpNo
urlNo
nameNo
slugYesSlug of YOUR listing to edit (from submit_listing).
tagsNo
categoryNo
pricing_modelNo
short_descriptionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesListing id.
slugYes
statusYes

TDQS

A4/5.0
Behavior4/5

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

With no annotations, the description carries full burden. It discloses that edits trigger admin review and listing becomes pending, and reappears only after re-approval. It also mentions the authentication requirement. It does not cover rate limits or other side effects, but core behavior is 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 sentences, each serving a purpose: purpose, constraints/consequences, and authentication. Front-loaded with the verb and resource. No unnecessary words.

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

Completeness3/5

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

Given 8 parameters and low schema coverage, the description covers the key behavioral effect (review) and ownership constraint. An output schema exists but its content is not described. The description is adequate but lacks parameter detail and error handling guidance.

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 description coverage is only 13% (only slug described). The description only generically mentions 'fields of a listing' without detailing specific parameters like name, url, tags, etc. It does not add meaning beyond the schema for most parameters.

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 updates fields of a listing the user owns, by slug. It explicitly mentions constraints like not changing ownership or review status, and distinguishes from siblings like get_listing, submit_listing, etc.

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 says when to use: to update your own listing. It lists constraints and consequences (admin review on edit). It implies when not to use (e.g., for viewing, use get_listing) but does not explicitly mention alternatives.

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.4/5.0
Disambiguation5/5

Each tool has a distinct purpose: submit, edit, get, search, and list categories. No overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in lowercase with underscores, e.g., submit_listing, search_listings.

Tool Count5/5

Five tools cover the core operations of a directory server (CRUD minus delete, plus categorized search) without unnecessary bloat.

Completeness4/5

Covers create, read, update, and search. Missing delete functionality, but this may be intentional for admin-only or user unpublish actions.