@contextstream/mcp-server 0.3.48 → 0.3.49
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 +73 -11
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7678,16 +7678,47 @@ function getCoreToolsHint() {
|
|
|
7678
7678
|
var LESSON_DEDUP_WINDOW_MS = 2 * 60 * 1e3;
|
|
7679
7679
|
var recentLessonCaptures = /* @__PURE__ */ new Map();
|
|
7680
7680
|
var LIGHT_TOOLSET = /* @__PURE__ */ new Set([
|
|
7681
|
+
// Core session tools (13)
|
|
7681
7682
|
"session_init",
|
|
7683
|
+
"session_tools",
|
|
7682
7684
|
"context_smart",
|
|
7685
|
+
"session_summary",
|
|
7683
7686
|
"session_capture",
|
|
7687
|
+
"session_capture_lesson",
|
|
7688
|
+
"session_get_lessons",
|
|
7684
7689
|
"session_recall",
|
|
7685
7690
|
"session_remember",
|
|
7691
|
+
"session_get_user_context",
|
|
7692
|
+
"session_smart_search",
|
|
7693
|
+
"session_compress",
|
|
7694
|
+
"session_delta",
|
|
7695
|
+
// Setup and configuration (3)
|
|
7696
|
+
"generate_editor_rules",
|
|
7697
|
+
"workspace_associate",
|
|
7698
|
+
"workspace_bootstrap",
|
|
7699
|
+
// Project management (5)
|
|
7700
|
+
"projects_create",
|
|
7701
|
+
"projects_list",
|
|
7702
|
+
"projects_get",
|
|
7703
|
+
"projects_overview",
|
|
7704
|
+
"projects_statistics",
|
|
7705
|
+
// Project indexing (4)
|
|
7706
|
+
"projects_ingest_local",
|
|
7707
|
+
"projects_index",
|
|
7708
|
+
"projects_index_status",
|
|
7709
|
+
"projects_files",
|
|
7710
|
+
// Memory basics (2)
|
|
7711
|
+
"memory_search",
|
|
7712
|
+
"memory_decisions",
|
|
7713
|
+
// Graph basics (2)
|
|
7714
|
+
"graph_related",
|
|
7715
|
+
"graph_decisions",
|
|
7716
|
+
// Utility (2)
|
|
7686
7717
|
"auth_me",
|
|
7687
7718
|
"mcp_server_version"
|
|
7688
7719
|
]);
|
|
7689
7720
|
var STANDARD_TOOLSET = /* @__PURE__ */ new Set([
|
|
7690
|
-
// Core session tools
|
|
7721
|
+
// Core session tools (13)
|
|
7691
7722
|
"session_init",
|
|
7692
7723
|
"session_tools",
|
|
7693
7724
|
"context_smart",
|
|
@@ -7701,18 +7732,49 @@ var STANDARD_TOOLSET = /* @__PURE__ */ new Set([
|
|
|
7701
7732
|
"session_smart_search",
|
|
7702
7733
|
"session_compress",
|
|
7703
7734
|
"session_delta",
|
|
7704
|
-
// Setup and configuration
|
|
7735
|
+
// Setup and configuration (3)
|
|
7705
7736
|
"generate_editor_rules",
|
|
7706
7737
|
"workspace_associate",
|
|
7707
7738
|
"workspace_bootstrap",
|
|
7739
|
+
// Workspace management (2)
|
|
7740
|
+
"workspaces_list",
|
|
7741
|
+
"workspaces_get",
|
|
7742
|
+
// Project management (6)
|
|
7708
7743
|
"projects_create",
|
|
7709
7744
|
"projects_list",
|
|
7710
|
-
|
|
7745
|
+
"projects_get",
|
|
7746
|
+
"projects_overview",
|
|
7747
|
+
"projects_statistics",
|
|
7748
|
+
"projects_update",
|
|
7749
|
+
// Project indexing (4)
|
|
7711
7750
|
"projects_ingest_local",
|
|
7712
7751
|
"projects_index",
|
|
7713
7752
|
"projects_index_status",
|
|
7714
7753
|
"projects_files",
|
|
7715
|
-
//
|
|
7754
|
+
// Memory events (6)
|
|
7755
|
+
"memory_search",
|
|
7756
|
+
"memory_decisions",
|
|
7757
|
+
"memory_create_event",
|
|
7758
|
+
"memory_list_events",
|
|
7759
|
+
"memory_timeline",
|
|
7760
|
+
"memory_summary",
|
|
7761
|
+
// Memory nodes (2)
|
|
7762
|
+
"memory_create_node",
|
|
7763
|
+
"memory_list_nodes",
|
|
7764
|
+
// Knowledge graph analysis (8)
|
|
7765
|
+
"graph_related",
|
|
7766
|
+
"graph_decisions",
|
|
7767
|
+
"graph_path",
|
|
7768
|
+
"graph_dependencies",
|
|
7769
|
+
"graph_call_path",
|
|
7770
|
+
"graph_impact",
|
|
7771
|
+
"graph_circular_dependencies",
|
|
7772
|
+
"graph_unused_code",
|
|
7773
|
+
// Search (3)
|
|
7774
|
+
"search_semantic",
|
|
7775
|
+
"search_hybrid",
|
|
7776
|
+
"search_keyword",
|
|
7777
|
+
// Utility (2)
|
|
7716
7778
|
"auth_me",
|
|
7717
7779
|
"mcp_server_version"
|
|
7718
7780
|
]);
|
|
@@ -11437,12 +11499,12 @@ Created API key: ${maskApiKey(apiKey)}
|
|
|
11437
11499
|
const modeChoice = normalizeInput(await rl.question("Choose [1/2] (default 1): ")) || "1";
|
|
11438
11500
|
const mode = modeChoice === "2" ? "full" : "minimal";
|
|
11439
11501
|
console.log("\nMCP toolset (which tools to expose to the AI):");
|
|
11440
|
-
console.log(" 1) Light \u2014
|
|
11441
|
-
console.log(" Best for:
|
|
11442
|
-
console.log(" 2) Standard (recommended) \u2014
|
|
11443
|
-
console.log(" Best for: most users,
|
|
11444
|
-
console.log(" 3) Complete \u2014 all tools including
|
|
11445
|
-
console.log(" Best for: power users needing
|
|
11502
|
+
console.log(" 1) Light \u2014 core session, project, and basic memory/graph tools (~30 tools)");
|
|
11503
|
+
console.log(" Best for: faster responses, simpler workflows, resource-constrained environments");
|
|
11504
|
+
console.log(" 2) Standard (recommended) \u2014 adds workspace, memory CRUD, graph analysis, search (~50 tools)");
|
|
11505
|
+
console.log(" Best for: most users, full development workflow with memory and code analysis");
|
|
11506
|
+
console.log(" 3) Complete \u2014 all tools including AI, GitHub, Slack integrations (~86 tools)");
|
|
11507
|
+
console.log(" Best for: power users needing integrations and advanced features");
|
|
11446
11508
|
console.log("");
|
|
11447
11509
|
console.log(" Tip: Change later by setting CONTEXTSTREAM_TOOLSET=light|standard|complete");
|
|
11448
11510
|
const toolsetChoice = normalizeInput(await rl.question("Choose [1/2/3] (default 2): ")) || "2";
|
|
@@ -11730,7 +11792,7 @@ Applying to ${projects.length} project(s)...`);
|
|
|
11730
11792
|
const skipped = writeActions.filter((a) => a.status === "skipped").length;
|
|
11731
11793
|
const dry = writeActions.filter((a) => a.status === "dry-run").length;
|
|
11732
11794
|
console.log(`Summary: ${created} created, ${updated} updated, ${appended} appended, ${skipped} skipped, ${dry} dry-run.`);
|
|
11733
|
-
const toolsetDesc = toolset === "light" ? "~
|
|
11795
|
+
const toolsetDesc = toolset === "light" ? "~30 tools" : toolset === "complete" ? "~86 tools" : "~50 tools";
|
|
11734
11796
|
console.log(`Toolset: ${toolset} (${toolsetDesc})`);
|
|
11735
11797
|
}
|
|
11736
11798
|
console.log("\nNext steps:");
|
package/package.json
CHANGED