get_query_parameters
Extract URL normalization parameters from Bing Webmaster Tools to analyze and optimize website query handling for search engines.
Instructions
Get URL normalization parameters. Note: May require special permissions.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| site_url | Yes |
Implementation Reference
- mcp_server_bwt/main.py:811-826 (handler)The handler function that fetches query parameters via the Bing Webmaster API for URL normalization.async def get_query_parameters( site_url: Annotated[str, "The URL of the site"] ) -> List[Dict[str, Any]]: """ Get URL normalization parameters. Args: site_url: The URL of the site Returns: List of query parameters used for URL normalization """ async with api: params = await api._make_request(f"GetQueryParameters?siteUrl={site_url}") return api._ensure_type_field(params, "QueryParameter")
- mcp_server_bwt/main.py:808-810 (registration)MCP tool registration decorator defining the tool name and description.name="get_query_parameters", description="Get URL normalization parameters. Note: May require special permissions.", )
- mcp_server_bwt/main.py:812-813 (schema)Input schema defined via type annotations and return type.site_url: Annotated[str, "The URL of the site"] ) -> List[Dict[str, Any]]: