Skip to main content
Glama
agalliani

mcp-server-bwt

by agalliani

get_crawl_settings

Retrieve current crawl settings for a specified site to monitor and adjust crawling behavior. Get the exact configuration needed to troubleshoot or optimize site crawl.

Instructions

Retrieve crawl settings for a specific site.

Args: site_url: The URL of the site to get crawl settings for

Returns: CrawlSettings: The current crawl settings for the site

Raises: BingWebmasterError: If settings cannot be retrieved

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
__typeNoCrawlSettings:#Microsoft.Bing.Webmaster.Api
CrawlRateYes
CrawlBoostEnabledYes
CrawlBoostAvailableYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description makes the read-only nature clear via 'Retrieve' and 'current crawl settings,' and it discloses that failures surface as BingWebmasterError. It stops short of explaining side effects, ownership/prerequisite checks, or response details, but those are less critical for a simple getter.

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?

The main action appears in the first sentence with no filler. The Args/Returns/Raises sections are compact and front-loaded, making it easy for an agent to scan.

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

Completeness4/5

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

For a one-parameter getter, the description covers purpose, the parameter, the return type, and a failure mode, which is sufficient for most invocation scenarios. It is only missing optional context like site verification requirements or how this relates to save_crawl_settings.

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?

The Args section defines site_url as 'the URL of the site,' which clarifies the single parameter despite the schema having no descriptions. It still largely paraphrases the parameter name and adds no format, scope, or validation details.

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 opens with 'Retrieve crawl settings for a specific site,' providing a clear verb, object, and scope. It distinguishes itself from the read/write sibling save_crawl_settings by the explicit retrieval framing, though it does not directly name that alternative.

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 prefer this tool over related settings tools or what conditions must be true before calling it. The name and verb imply a read operation, but no context, prerequisites, or typical workflow is offered.

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