forked from microsoft/clarity-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@microsoft/clarity-mcp-server",
"version": "2.0.1",
"description": "MCP Server for Microsoft Clarity based on data export API",
"author": "Microsoft",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"homepage": "https://clarity.microsoft.com/",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/clarity-mcp-server"
},
"keywords": [
"clarity",
"behavior-analytics-tools",
"heatmaps",
"session-recordings",
"insights",
"analytics",
"mcp",
"model-context-protocol",
"ai",
"agents"
],
"bin": {
"clarity-mcp-server": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^20.19.23",
"typescript": "^5.9.3"
}
}