> ## Documentation Index
> Fetch the complete documentation index at: https://docs.markifact.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Add Site

> Adds a site to the connected Bing Webmaster Tools account

Adds a site to the connected Bing Webmaster Tools account. The site starts unverified: publish Bing's verification meta tag, XML file, or DNS record, then run the verify site node. Adding an already-added site succeeds without changes.

|                       |                             |
| --------------------- | --------------------------- |
| **App**               | Bing Webmaster Tools        |
| **Operation ID**      | `bing_webmaster_add_site`   |
| **Type**              | Action                      |
| **Connection**        | `bing_webmaster` (required) |
| **Credits per run**   | 1                           |
| **Agent / MCP tool**  | Yes                         |
| **Requires approval** | Yes (write operation)       |

## Inputs

| Field      | Type   | Required | Default | Description                                                                                                                                                                                                                                                                                                                                                              |
| ---------- | ------ | -------- | ------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `site_url` | string | Yes      | -       | Full URL of the site to add to your Bing Webmaster Tools account, for example `https://example.com.` Typed rather than picked because the site does not exist in the account yet. Adding a site does not verify it: publish Bing's verification meta tag, XML file, or DNS record, then run the verify site node. Adding an already-added site succeeds without changes. |

## Output

**Type**: `Dict`

Returns a confirmation with the added site URL. is\_verified is always false; verification is a separate step.

**Fields**: `status`, `site_url`, `is_verified`

**Example**:

```json theme={"dark"}
{
  "status": "added",
  "site_url": "https://example.com",
  "is_verified": false
}
```
