Skip to main content
Glama

user_public_by_id_get

Execute a public template by ID to return paginated results, with optional limit, offset, and user impersonation.

Instructions

GET /public/{id} Выполнить публичный шаблон Тег: Шаблоны Спека: user

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesимя шаблона
limitNoМакс. кол-во записей
offsetNoСмещение (пропуск записей)
user_idNoadmin acts on behalf of this user

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.5/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 behavioral burden, yet it discloses nothing about auth requirements, side effects, or output. The word 'Выполнить' (execute) is ambiguous for a supposedly read-oriented GET and is not clarified, leaving the safety profile of the call unclear.

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

Conciseness3/5

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

It is short and the method/path is front-loaded, but the trailing 'Тег: Шаблоны' and 'Спека: user' lines merely restate metadata already available structurally and add no agent-useful content. It is terse rather than wasteful, but minimally informative.

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 tool with 4 parameters, no annotations, and no output schema, the description is far too thin to tell an agent what the call actually does or returns. It does not compensate for the absence of annotations or return-value documentation.

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 all four parameters (id, limit, offset, user_id) are already documented in the schema. The description adds no additional meaning about them, which is the expected baseline when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description gives an HTTP verb and path ('GET /public/{id}') and a short gloss ('Выполнить публичный шаблон' = execute public template), so the resource is identifiable. However, 'execute' is vague for a GET endpoint (and is contradicted by limit/offset params that suggest a listing), and nothing distinguishes it from close siblings like user_public_by_id_post or user_template_by_id_get.

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 guidance on when to use this tool versus the many user_* / public_* siblings, nor any stated prerequisites or context. The only hint is the HTTP path itself. No when-to-use, when-not-to-use, or alternative is given.

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