/microsoft-clarity | Type: Application | PCID required: Yes
Tools
| Tool | Description |
|---|---|
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. |
Show inputSchema
Show inputSchema
{
"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"
]
}

