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

# microsoft-clarity

> Clarity Web Analytics

**Server path:** `/microsoft-clarity` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                          | Description                                     |
| --------------------------------------------------------------------------------------------- | ----------------------------------------------- |
| [`microsoft_clarity_get_project_live_insights`](#microsoft_clarity_get_project_live_insights) | Get live project insights and analytics metrics |

***

## microsoft\_clarity\_get\_project\_live\_insights

Get live project insights and analytics metrics

**Parameters:**

| Parameter    | Type    | Required | Default | Description                                                                                                                             |
| ------------ | ------- | -------- | ------- | --------------------------------------------------------------------------------------------------------------------------------------- |
| `numOfDays`  | integer | Yes      | —       | Number of days to look back for insights data. Valid values are 1, 2, or 3.                                                             |
| `dimension1` | string  | No       | —       | First optional breakdown dimension. Available dimensions: Browser, Device, Country/Region, OS, Source, Medium, Campaign, Channel, URL.  |
| `dimension2` | string  | No       | —       | Second optional breakdown dimension. Available dimensions: Browser, Device, Country/Region, OS, Source, Medium, Campaign, Channel, URL. |
| `dimension3` | string  | No       | —       | Third optional breakdown dimension. Available dimensions: Browser, Device, Country/Region, OS, Source, Medium, Campaign, Channel, URL.  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      },
      "numOfDays": {
        "type": "integer",
        "description": "Number of days to look back for insights data. Valid values are 1, 2, or 3.",
        "enum": [
          1,
          2,
          3
        ]
      },
      "dimension1": {
        "type": "string",
        "description": "First optional breakdown dimension. Available dimensions: Browser, Device, Country/Region, OS, Source, Medium, Campaign, Channel, URL.",
        "enum": [
          "Browser",
          "Device",
          "Country/Region",
          "OS",
          "Source",
          "Medium",
          "Campaign",
          "Channel",
          "URL"
        ]
      },
      "dimension2": {
        "type": "string",
        "description": "Second optional breakdown dimension. Available dimensions: Browser, Device, Country/Region, OS, Source, Medium, Campaign, Channel, URL.",
        "enum": [
          "Browser",
          "Device",
          "Country/Region",
          "OS",
          "Source",
          "Medium",
          "Campaign",
          "Channel",
          "URL"
        ]
      },
      "dimension3": {
        "type": "string",
        "description": "Third optional breakdown dimension. Available dimensions: Browser, Device, Country/Region, OS, Source, Medium, Campaign, Channel, URL.",
        "enum": [
          "Browser",
          "Device",
          "Country/Region",
          "OS",
          "Source",
          "Medium",
          "Campaign",
          "Channel",
          "URL"
        ]
      }
    },
    "required": [
      "PCID",
      "numOfDays"
    ]
  }
  ```
</Expandable>
