@qe-mcp/server-ena 0.1.7 → 0.1.8

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/server.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qe-mcp/server-ena",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "MCP server for Epistemic Network Analysis \u2014 WASM backend, zero Python dependency",
5
5
  "type": "module",
6
6
  "main": "server.js",
package/server.js CHANGED
@@ -1071,8 +1071,8 @@ const DATA_PROPS = {
1071
1071
  };
1072
1072
  const CORE_PROPS = {
1073
1073
  ...DATA_PROPS,
1074
- units: { description: 'Column name(s) identifying units of analysis. Pass a string for a single column (e.g. "student_id") or an array for compound units (e.g. ["UserName","Condition"]). Compound units are joined with "__" to form labels like "alice__FirstGame".' },
1075
- conversations: { description: 'Column name(s) segmenting conversations — accumulation resets between conversations. Pass a string or array (e.g. ["Condition","GameDay"]).' },
1074
+ units: { type: ['string', 'array'], items: { type: 'string' }, description: 'Column name(s) identifying units of analysis. Pass a string for a single column (e.g. "student_id") or an array for compound units (e.g. ["UserName","Condition"]). Compound units are joined with "__" to form labels like "alice__FirstGame".' },
1075
+ conversations: { type: ['string', 'array'], items: { type: 'string' }, description: 'Column name(s) segmenting conversations — accumulation resets between conversations. Pass a string or array (e.g. ["Condition","GameDay"]).' },
1076
1076
  codes: { type: 'array', items: { type: 'string' }, description: 'List of binary code column names' },
1077
1077
  window_size: { type: 'number', description: 'Stanza window — rows to look back (default 4)' },
1078
1078
  window_forward:{ type: 'number', description: 'Rows to look forward (default 0)' },