Skip to main content
Glama
zizzfizzix

Bing Webmaster Tools MCP Server

by zizzfizzix

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
NameRequiredDescriptionDefault
selfYes
site_urlYes

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__
  • 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
  • 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)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/zizzfizzix/mcp-server-bwt'

If you have feedback or need assistance with the MCP directory API, please join our Discord server