Skip to main content
Glama

regru_get_service_info

Retrieve detailed information about a REG.RU service by service ID or domain name. Use it to check service status, configuration, and account details.

Instructions

Get detailed information about a service by service ID or domain name.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
service_idNoService ID
domain_nameNoDomain name (alternative to service_id)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.3/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. It says nothing about what 'detailed information' includes, whether either lookup key is required, whether the call is read-only, or any error behavior when neither identifier is given.

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?

A single, well-formed sentence with the key lookup semantics front-loaded. Every word earns its place.

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

Completeness3/5

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

For a simple two-parameter read tool with full schema coverage, the description is minimally viable. Without annotations or an output schema, it should say more about what 'detailed information' returns and that neither parameter is required.

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 coverage is 100%, so the schema already documents both parameters. The description adds the useful constraint that domain_name is an alternative to service_id, but no syntax or format details beyond that. Baseline 3 is appropriate 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.

Purpose4/5

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

States a specific verb (get) and resource (service info), and clarifies the two lookup keys (service ID or domain name). It is distinguishable from siblings like regru_list_services (listing) and regru_renew_service (mutation), though it doesn't explicitly name an alternative.

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

Usage Guidelines3/5

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

The 'by service ID or domain name' clause implies usage context (lookup by identifier), but there is no explicit when-to-use vs alternatives guidance or exclusions. Adequate but with clear gaps.

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