add_connected_page
Connect a page linking to your website by providing its URL and your site's URL using the MCP server. Ensures proper indexing and visibility in Bing Webmaster Tools.
Instructions
Add a page which has a link to your website.
Args: site_url: The URL of your site master_url: The URL of the page to be connected
Raises: BingWebmasterError: If page cannot be connected
Input Schema
Name | Required | Description | Default |
---|---|---|---|
master_url | Yes | ||
self | Yes | ||
site_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"master_url": {
"title": "Master Url",
"type": "string"
},
"self": {
"title": "self",
"type": "string"
},
"site_url": {
"title": "Site Url",
"type": "string"
}
},
"required": [
"self",
"site_url",
"master_url"
],
"title": "add_connected_pageArguments",
"type": "object"
}