get_fetched_url_details
Retrieve detailed fetch status information for a specific URL from Bing Webmaster Tools to monitor indexing progress and identify potential issues.
Instructions
Get detailed information about a specific fetched URL.
Args: site_url: The URL of the site url: The specific URL to get details for
Returns: FetchedUrlDetails: Detailed information about the fetch status
Raises: BingWebmasterError: If URL details cannot be retrieved
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| self | Yes | ||
| site_url | Yes | ||
| url | Yes |
Implementation Reference
- The handler function template created by wrap_service_method for all tools, including 'get_fetched_url_details'. It executes the tool by calling the underlying SubmissionService.get_fetched_url_details method on the service instance.# Create wrapper function with same signature @mcp.tool() @wraps(original_method) async def wrapper(*args: Any, **kwargs: Any) -> Any: # Filter out any 'self' arguments that might be passed by the MCP client kwargs = {k: v for k, v in kwargs.items() if k != "self"} async with service as s: service_obj = getattr(s, service_attr) # Get the method from the instance method = getattr(service_obj, method_name) # Call the method directly - it's already bound to the instance return await method(*args, **kwargs) # Copy signature and docstring wrapper.__signature__ = new_sig # type: ignore wrapper.__doc__ = original_method.__doc__ return wrapper
- mcp_server_bwt/tools/bing_webmaster.py:117-119 (registration)Registers the 'get_fetched_url_details' tool by invoking wrap_service_method, which creates and decorates the handler with @mcp.tool().get_fetched_url_details = wrap_service_method( # noqa: F841 mcp, service, "submission", "get_fetched_url_details" )
- mcp_server_bwt/main.py:16-17 (registration)Invokes add_bing_webmaster_tools to register all Bing Webmaster MCP tools, including 'get_fetched_url_details'.# Add the tools to the MCP server add_bing_webmaster_tools(mcp, bing_service)
- Initializes the 'submission' service attribute in BingWebmasterService, providing the SubmissionService instance whose 'get_fetched_url_details' method is wrapped as the tool.# Expose all services directly self.sites = site_management.SiteManagementService(self.client) self.submission = submission.SubmissionService(self.client) self.traffic = traffic_analysis.TrafficAnalysisService(self.client) self.crawling = crawling.CrawlingService(self.client) self.keywords = keyword_analysis.KeywordAnalysisService(self.client) self.links = link_analysis.LinkAnalysisService(self.client) self.content = content_management.ContentManagementService(self.client) self.blocking = content_blocking.ContentBlockingService(self.client) self.regional = regional_settings.RegionalSettingsService(self.client) self.urls = url_management.UrlManagementService(self.client)