@contextstream/mcp-server 0.4.11 → 0.4.13
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/dist/index.js +9 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6003,8 +6003,12 @@ var ContextStreamClient = class {
|
|
|
6003
6003
|
case "conversation":
|
|
6004
6004
|
apiEventType = "chat";
|
|
6005
6005
|
break;
|
|
6006
|
+
// Plans & Tasks feature - use dedicated event types
|
|
6006
6007
|
case "task":
|
|
6007
|
-
apiEventType = "
|
|
6008
|
+
apiEventType = "task";
|
|
6009
|
+
break;
|
|
6010
|
+
case "plan":
|
|
6011
|
+
apiEventType = "plan";
|
|
6008
6012
|
break;
|
|
6009
6013
|
case "bug":
|
|
6010
6014
|
case "feature":
|
|
@@ -11034,6 +11038,9 @@ Use this to persist decisions, insights, preferences, or important information.`
|
|
|
11034
11038
|
"task",
|
|
11035
11039
|
"bug",
|
|
11036
11040
|
"feature",
|
|
11041
|
+
// Plans & Tasks feature
|
|
11042
|
+
"plan",
|
|
11043
|
+
// Implementation plan
|
|
11037
11044
|
// Lesson system types
|
|
11038
11045
|
"correction",
|
|
11039
11046
|
// User corrected the AI
|
|
@@ -12577,7 +12584,7 @@ Use this to remove a reminder that is no longer relevant.`,
|
|
|
12577
12584
|
query: external_exports.string().optional().describe("Query for recall/search/lessons/decision_trace"),
|
|
12578
12585
|
content: external_exports.string().optional().describe("Content for capture/remember/compress"),
|
|
12579
12586
|
title: external_exports.string().optional().describe("Title for capture/capture_lesson/capture_plan"),
|
|
12580
|
-
event_type: external_exports.enum(["decision", "preference", "insight", "task", "bug", "feature", "correction", "lesson", "warning", "frustration", "conversation"]).optional().describe("Event type for capture"),
|
|
12587
|
+
event_type: external_exports.enum(["decision", "preference", "insight", "task", "bug", "feature", "plan", "correction", "lesson", "warning", "frustration", "conversation"]).optional().describe("Event type for capture"),
|
|
12581
12588
|
importance: external_exports.enum(["low", "medium", "high", "critical"]).optional(),
|
|
12582
12589
|
tags: external_exports.array(external_exports.string()).optional(),
|
|
12583
12590
|
// Lesson-specific
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contextstream/mcp-server",
|
|
3
3
|
"mcpName": "io.github.contextstreamio/mcp-server",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.13",
|
|
5
5
|
"description": "ContextStream MCP server - v0.4.x with consolidated domain tools (~11 tools, ~75% token reduction). Code context, memory, search, and AI tools.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"license": "MIT",
|