@modelcontextprotocol/server-cohort-heatmap 0.4.1 → 0.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -0
- package/dist/index.js +3644 -44
- package/dist/mcp-app.html +22 -22
- package/dist/server.js +1732 -1731
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -10,6 +10,27 @@ A demo MCP App that displays cohort retention data as an interactive heatmap, sh
|
|
|
10
10
|
</tr>
|
|
11
11
|
</table>
|
|
12
12
|
|
|
13
|
+
## MCP Client Configuration
|
|
14
|
+
|
|
15
|
+
Add to your MCP client configuration (stdio transport):
|
|
16
|
+
|
|
17
|
+
```json
|
|
18
|
+
{
|
|
19
|
+
"mcpServers": {
|
|
20
|
+
"cohort-heatmap": {
|
|
21
|
+
"command": "npx",
|
|
22
|
+
"args": [
|
|
23
|
+
"-y",
|
|
24
|
+
"--silent",
|
|
25
|
+
"--registry=https://registry.npmjs.org/",
|
|
26
|
+
"@modelcontextprotocol/server-cohort-heatmap",
|
|
27
|
+
"--stdio"
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
```
|
|
33
|
+
|
|
13
34
|
## Features
|
|
14
35
|
|
|
15
36
|
- **Cohort Retention Heatmap**: Color-coded grid showing retention percentages across cohorts and time periods
|