Skip to main content
Glama
isiahw1

mcp-server-bing-webmaster

remove_query_parameter

Remove URL normalization parameters from Bing Webmaster Tools to clean up site URLs and improve search indexing accuracy.

Instructions

Remove a URL normalization parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_urlYes
parameterYes

Implementation Reference

  • The MCP tool handler for 'remove_query_parameter'. It uses type annotations for schema/input validation and calls the Bing Webmaster API endpoint 'RemoveQueryParameter' to perform the action. The @mcp.tool decorator handles registration.
    @mcp.tool( name="remove_query_parameter", description="Remove a URL normalization parameter." ) async def remove_query_parameter( site_url: Annotated[str, "The URL of the site"], parameter: Annotated[str, "The query parameter to remove"], ) -> Dict[str, str]: """ Remove a URL normalization parameter. Args: site_url: The URL of the site parameter: The query parameter to remove Returns: Success message """ async with api: await api._make_request( "RemoveQueryParameter", "POST", {"siteUrl": site_url, "parameter": parameter}, ) return {"message": f"Query parameter {parameter} removed successfully"}

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/isiahw1/mcp-server-bing-webmaster'

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