get_crawl_issues
Identify and analyze crawl issues and errors for websites using Bing Webmaster Tools data to improve site health and search visibility.
Instructions
Get crawl issues and errors for a site.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| site_url | Yes |
Implementation Reference
- mcp_server_bwt/main.py:280-282 (registration)The @mcp.tool decorator registers the function as an MCP tool named 'get_crawl_issues' with its description.@mcp.tool( name="get_crawl_issues", description="Get crawl issues and errors for a site." )
- mcp_server_bwt/main.py:283-297 (handler)The main handler function that takes site_url, makes an API request to Bing Webmaster Tools for crawl issues, and returns the processed list of issues.async def get_crawl_issues( site_url: Annotated[str, "The URL of the site"] ) -> List[Dict[str, Any]]: """ Get crawl issues and errors for a site. Args: site_url: The URL of the site Returns: List of crawl issues """ async with api: issues = await api._make_request(f"GetCrawlIssues?siteUrl={site_url}") return api._ensure_type_field(issues, "CrawlIssue")