Skip to main content
Glama
altegio

Altegio Marketplace MCP

Official
by altegio

marketplace_submit_for_moderation

Plan or submit a fully configured application for Marketplace moderation to get it reviewed and approved.

Instructions

Plan or submit a fully configured application for Marketplace moderation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeYes
partner_idYesDeveloper account ID used for caller ownership checks
confirmationNo
application_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=false, idempotentHint=false, openWorldHint=true and destructiveHint=false, so the safety profile is covered. The description adds nothing beyond that: it doesn't explain that apply triggers an irreversible moderation workflow, what the 'confirmation' parameter is for, or what side effects occur.

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

Conciseness4/5

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

A single front-loaded sentence with no filler, with the dual-mode nature surfaced first. It is efficient, though its brevity tips into under-specification rather than true conciseness.

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

Completeness2/5

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

For a four-parameter mutation tool with no output schema and only 25% schema coverage, the description is far too thin. Nothing explains the required vs optional parameters, the confirmation flow, or the moderation outcome the caller should expect.

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 25% (only partner_id is documented). The description does not mention mode, application_id, or the entirely undocumented 'confirmation' parameter, which is the parameter most likely to gate a real submission and therefore most in need of explanation.

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 gives a specific verb ('Plan or submit') and resource ('a fully configured application for Marketplace moderation'), so the agent knows this is the moderation-submission entry point. It does not distinguish itself from adjacent siblings such as marketplace_save_moderation_instructions or marketplace_backoffice_set_publication, leaving some ambiguity about boundaries.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

'Plan or submit' hints at the plan/apply enum but never states when to use a dry-run plan versus an actual submission, nor does it mention prerequisites (a fully configured application) or what happens after submission. No alternatives or exclusions are given.

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