Skip to main content
Glama

user_template_by_id_post

Execute a stored template by its ID with arguments and settings in the SHM billing panel. Requires confirm:true for the non-GET operation; without it a preview is returned.

Instructions

POST /template/{id} Выполнить шаблон с аргументами Тег: Шаблоны Спека: user

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesимя шаблона
bodyNoТело запроса (application/json)
confirmNoЯвное подтверждение выполнения не-GET операции. Без confirm:true в режиме rw возвращается превью запроса.
user_idNoadmin acts on behalf of this user

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only states the HTTP method and that a template is executed with arguments, without mentioning side effects, permission requirements, confirmation/preview behavior, or what happens to data. The schema's confirm field explains preview behavior, but the description itself adds almost no behavioral context.

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?

The description is very short and front-loads the HTTP endpoint and action. The appended tag and spec lines are metadata that may not be essential, but overall there is no verbose or redundant phrasing.

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 no-annotation POST/mutation tool with nested request body and no output schema, the description is too thin. It does not explain execution side effects, expected outcome, or confirmation requirements, even though the schema covers parameter details. An agent would need to infer significant behavior from the schema alone.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the input schema already documents id, body, confirm, and user_id. The description adds only 'with arguments', which does not meaningfully extend parameter semantics beyond what the schema provides. Baseline 3 is appropriate.

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 states a specific verb and resource: 'POST /template/{id}' and 'Выполнить шаблон с аргументами' (execute template with arguments). This distinguishes it from the sibling GET tool user_template_by_id_get. It does not explain what 'executing a template' actually does, but the purpose is clear enough to separate from alternatives.

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?

There is no explicit guidance on when to use this tool versus alternatives such as user_template_by_id_get or admin_template endpoints. The POST endpoint implies a mutating action, but no conditions, prerequisites, or exclusions are provided.

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

Install Server

Other Tools