Skip to main content
Glama
BlogFactoryHQ

Ghost Publisher MCP

Trigger site deployment

trigger_deploy
Destructive

Triggers a one-time deployment by POSTing to a pre-configured hook only after user confirmation, with no automatic retries.

Instructions

POST exactly once to the configured deployment hook after user_confirmed=true. The hook URL cannot be supplied by the caller and failures are never retried automatically.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_confirmedYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
deployYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.10.1

TDQS

A4.7/5.0
Behavior5/5

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

Adds substantial behavior beyond the annotations: exactly-once POST semantics, that the hook URL cannot be caller-supplied (security-relevant), and that failures are never auto-retried. These are precisely the facts an agent needs before firing a non-idempotent, destructive call.

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?

Two dense sentences with zero filler; the confirmation precondition and the no-retry warning are both front-loaded where they matter most.

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?

Output schema exists so return values need no explanation, and the description covers the remaining risk surface: single-shot execution, no caller-controlled URL, no retries, gated on user confirmation. Nothing an agent needs to invoke it safely 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 description coverage is 0%, so the description must carry the meaning of user_confirmed, and it does explain it as a confirmation gate rather than just a boolean name. It stops short of restating required/const-true constraints, but the intent is clear.

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?

States a specific action (POST to the configured deployment hook) and the exact resource it affects, and no sibling tool performs deployments, so it is trivially distinguishable from list/get/preview/publish siblings.

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?

Gives an explicit precondition (only after user_confirmed=true), which functions as when-to-use guidance. It does not name alternatives, but none exist among the siblings for triggering a deploy, so the gap is minor.

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