get_connected_pages
Retrieve a list of pages connected to a specific site using the Bing Webmaster Tools API. Simplify site management by identifying all linked pages for analysis or tracking purposes.
Instructions
Get a list of pages connected to the site.
Args: site_url: The URL of the site
Returns: List[ConnectedSite]: List of connected sites
Raises: BingWebmasterError: If connected pages cannot be retrieved
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| self | Yes | ||
| site_url | Yes |
Implementation Reference
- The wrapper function decorated as MCP tool handler. It dynamically calls the 'links.get_connected_pages' service method with the provided arguments, preserving the original signature and documentation.# 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__
- mcp_server_bwt/tools/bing_webmaster.py:176-178 (registration)Creates and registers the 'get_connected_pages' tool by invoking the wrap_service_method helper with the appropriate service attribute ('links') and method name.get_connected_pages = wrap_service_method( # noqa: F841 mcp, service, "links", "get_connected_pages" )
- In the __aenter__ method of BingWebmasterService, initializes and exposes the 'links' service instance, which provides the get_connected_pages method wrapped by the tool handler.# 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) return self
- mcp_server_bwt/main.py:16-17 (registration)Top-level registration call that adds all Bing Webmaster tools, including get_connected_pages, to the MCP server instance.# Add the tools to the MCP server add_bing_webmaster_tools(mcp, bing_service)