Skip to main content
Glama
Crash-SV

Yandex Webmaster MCP Server

by Crash-SV

Get User Added Sitemap Info

get_user_added_sitemap_info

Retrieve detailed information about a user-added sitemap in Yandex Webmaster using user ID, host ID, and sitemap ID to inspect its status and properties.

Instructions

Get details of a user-added sitemap.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
host_idYesHost ID (format: https:example.com:443)
user_idYesYandex Webmaster user ID
sitemap_idYesSitemap ID

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

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?

With no annotations, the description carries the full behavioral burden, yet it discloses nothing beyond the bare read action. It does not mention whether a user_id/host_id must already be verified, whether the sitemap must be user-added versus system-discovered, or any error behavior for a missing sitemap_id.

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 front-loaded sentence with no filler or repetition. It is appropriately sized, though it is so terse that there is no room for the routing detail an agent would benefit from.

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?

An output schema exists, so return values need not be explained, and the schema fully documents the required parameters. The remaining gap is the lack of differentiation from get_sitemap_info, which matters given how many sitemap siblings exist.

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%, including the host_id format hint, so the schema already documents all three parameters. The description adds no syntax or format detail beyond what the schema provides, which is the baseline 3 case.

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 (details of a user-added sitemap), so the agent knows it retrieves a single sitemap's details. However, it does not distinguish itself from the close siblings get_sitemap_info and get_user_added_sitemaps, leaving the agent to infer the boundary from the name alone.

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?

No when-to-use guidance, no conditions, and no mention of alternatives such as get_sitemap_info or get_user_added_sitemaps. The agent must guess which sitemap retrieval tool applies to its situation.

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