manifest.json•1.91 kB
{
"dxt_version": "0.1",
"name": "@microsoft/clarity-mcp-server",
"display_name": "Microsoft Clarity",
"version": "1.0.5",
"description": "MCP Server for Microsoft Clarity based on data export API",
"long_description": "This extension enables integration between AI systems and Microsoft Clarity, providing access to project analytics data via Clarity's data export API.",
"author": {
"name": "Microsoft",
"url": "https://clarity.microsoft.com",
"email": "clarityms@microsoft.com"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/clarity-mcp-server"
},
"homepage": "https://clarity.microsoft.com",
"documentation": "https://github.com/microsoft/clarity-mcp-server",
"support": "https://github.com/microsoft/clarity-mcp-server/issues",
"icon": "icon.png",
"server": {
"type": "node",
"entry_point": "dist/index.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/dist/index.js"
],
"env": {
"CLARITY_API_TOKEN": "${user_config.api_token}"
}
}
},
"tools": [
{
"name": "get_clarity_data",
"description": "Fetch Microsoft Clarity analytics data"
}
],
"tools_generated": false,
"keywords": [
"clarity",
"api",
"analytics",
"behavior-analytics-tools",
"heatmaps",
"session-recordings",
"mcp",
"data insights",
"insights",
"model-context-protocol",
"ai",
"agent"
],
"license": "MIT",
"compatibility": {
"claude_desktop": ">=0.10.0",
"platforms": [
"darwin",
"win32",
"linux"
],
"runtimes": {
"node": ">=16.0.0"
}
},
"user_config": {
"api_token": {
"type": "string",
"title": "Clarity API Token",
"description": "Provide your Clarity data export API token",
"required": true,
"sensitive": true
}
}
}