Skip to main content
Glama

regru_move_service_to_folder

Move a service to a specified folder to organize REG.RU services. Requires service ID and target folder ID.

Instructions

Move a service to a specific folder for organization.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
folder_idYesTarget folder ID
service_idYesService ID to move

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.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 behavioral burden. It does not say whether the move is reversible, whether the service is removed from its prior folder, what permissions are required, or what happens if the target folder_id does not exist.

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 efficient sentence with the action and target front-loaded. Nothing is wasted, though it is arguably too terse to earn a full 5.

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?

This is a mutation tool with no annotations and no output schema, yet the description omits any effect description, failure modes, or return information an agent would need. Given the complexity and absence of structured support, it should say considerably more.

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% and both parameters (service_id, folder_id) are documented in the schema, so the baseline is 3. The description adds no meaning beyond what the schema already conveys about these two numeric IDs.

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?

States a specific verb+resource ('Move a service') plus a target ('to a specific folder'), which is unambiguous. It does not explicitly name a sibling alternative, but no sibling performs a move, so differentiation is implicit rather than stated.

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?

The description gives no when-to-use guidance, no prerequisites, and no mention of alternatives such as create_folder or list_folders. An agent gets no signal about the conditions under which moving is appropriate versus creating a new folder.

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