@contextstream/mcp-server 0.4.55 → 0.4.57
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/hooks/runner.js +474 -45
- package/dist/hooks/session-end.js +111 -17
- package/dist/hooks/session-init.js +381 -9
- package/dist/hooks/user-prompt-submit.js +453 -29
- package/dist/index.js +1604 -637
- package/dist/test-server.js +7 -0
- package/package.json +1 -1
package/dist/test-server.js
CHANGED
|
@@ -4052,6 +4052,13 @@ var NEVER = INVALID;
|
|
|
4052
4052
|
|
|
4053
4053
|
// src/version.ts
|
|
4054
4054
|
import { createRequire } from "module";
|
|
4055
|
+
var AUTO_UPDATE_ENABLED = process.env.CONTEXTSTREAM_AUTO_UPDATE !== "false";
|
|
4056
|
+
var UPDATE_COMMANDS = {
|
|
4057
|
+
npm: "npm install -g @contextstream/mcp-server@latest",
|
|
4058
|
+
macLinux: "curl -fsSL https://contextstream.io/scripts/setup.sh | bash",
|
|
4059
|
+
windows: "irm https://contextstream.io/scripts/setup.ps1 | iex"
|
|
4060
|
+
};
|
|
4061
|
+
var UPGRADE_COMMAND = UPDATE_COMMANDS.npm;
|
|
4055
4062
|
function getVersion() {
|
|
4056
4063
|
if (typeof __CONTEXTSTREAM_VERSION__ !== "undefined" && __CONTEXTSTREAM_VERSION__) {
|
|
4057
4064
|
return __CONTEXTSTREAM_VERSION__;
|
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.57",
|
|
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",
|