Bing Webmaster Tools MCP Server

by zizzfizzix
Verified

add_blocked_url

Block specific URLs or directories from being crawled or indexed in Bing Webmaster Tools. Use the tool to define the site, URL, and entity type for precise control over search engine visibility.

Instructions

Add a blocked URL to a site.

Args: site_url: The URL of the site blocked_url: The URL to be blocked entity_type: The type of entity to block (Page or Directory) date: The date the URL was blocked (default: minimum datetime)

Raises: BingWebmasterError: If URL cannot be blocked

Input Schema

NameRequiredDescriptionDefault
blocked_urlYes
dateNo
entity_typeNo
selfYes
site_urlYes

Input Schema (JSON Schema)

{ "$defs": { "BlockedUrlEntityType": { "enum": [ 0, 1 ], "title": "BlockedUrlEntityType", "type": "integer" } }, "properties": { "blocked_url": { "title": "Blocked Url", "type": "string" }, "date": { "anyOf": [ { "format": "date-time", "type": "string" }, { "type": "null" } ], "default": null, "title": "Date" }, "entity_type": { "$ref": "#/$defs/BlockedUrlEntityType", "default": 0 }, "self": { "title": "self", "type": "string" }, "site_url": { "title": "Site Url", "type": "string" } }, "required": [ "self", "site_url", "blocked_url" ], "title": "add_blocked_urlArguments", "type": "object" }
ID: 2hyhagvzgq