@hasna/mementos 0.14.23 → 0.14.24

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 CHANGED
@@ -131,6 +131,7 @@ function readErrorMessage(payload, status) {
131
131
  }
132
132
  // src/mcp-runtime.ts
133
133
  import { createInterface } from "readline";
134
+ var MEMENTOS_MCP_VERSION = "0.14.24";
134
135
  var AUTHLESS_SCHEMA = {
135
136
  type: "object",
136
137
  properties: {},
@@ -245,7 +246,7 @@ async function handleMcpMessage(message, client = createRemoteClientFromEnv()) {
245
246
  if (message?.method === "initialize") {
246
247
  return jsonRpcResult(id, {
247
248
  protocolVersion: "2024-11-05",
248
- serverInfo: { name: "mementos", version: "0.14.22" },
249
+ serverInfo: { name: "mementos", version: MEMENTOS_MCP_VERSION },
249
250
  capabilities: { tools: {} }
250
251
  });
251
252
  }
@@ -1,4 +1,5 @@
1
1
  import { MementosRemoteClient } from "./remote-client";
2
+ export declare const MEMENTOS_MCP_VERSION = "0.14.24";
2
3
  export interface RemoteMcpTool {
3
4
  name: string;
4
5
  description: string;
@@ -1 +1 @@
1
- {"version":3,"file":"mcp-runtime.d.ts","sourceRoot":"","sources":["../src/mcp-runtime.ts"],"names":[],"mappings":"AACA,OAAO,EAA6B,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAElF,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACrC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,oBAAoB,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;CACzF;AAaD,eAAO,MAAM,gBAAgB,EAAE,aAAa,EA4F3C,CAAC;AAEF,wBAAsB,iBAAiB,CACrC,IAAI,EAAE,MAAM,EACZ,KAAK,GAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAM,EACnC,MAAM,uBAA8B,oBAKrC;AAED,wBAAsB,gBAAgB,CAAC,OAAO,EAAE,GAAG,EAAE,MAAM,uBAA8B;;;;;;;;;;;GA8BxF;AAED,wBAAgB,aAAa,CAAC,MAAM,uBAA8B,QAUjE"}
1
+ {"version":3,"file":"mcp-runtime.d.ts","sourceRoot":"","sources":["../src/mcp-runtime.ts"],"names":[],"mappings":"AACA,OAAO,EAA6B,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAElF,eAAO,MAAM,oBAAoB,YAAY,CAAC;AAE9C,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACrC,GAAG,EAAE,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,oBAAoB,KAAK,OAAO,CAAC,OAAO,CAAC,CAAC;CACzF;AAaD,eAAO,MAAM,gBAAgB,EAAE,aAAa,EA4F3C,CAAC;AAEF,wBAAsB,iBAAiB,CACrC,IAAI,EAAE,MAAM,EACZ,KAAK,GAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAM,EACnC,MAAM,uBAA8B,oBAKrC;AAED,wBAAsB,gBAAgB,CAAC,OAAO,EAAE,GAAG,EAAE,MAAM,uBAA8B;;;;;;;;;;;GA8BxF;AAED,wBAAgB,aAAa,CAAC,MAAM,uBAA8B,QAUjE"}
package/dist/mcp.js CHANGED
@@ -136,6 +136,7 @@ function readErrorMessage(payload, status) {
136
136
  }
137
137
 
138
138
  // src/mcp-runtime.ts
139
+ var MEMENTOS_MCP_VERSION = "0.14.24";
139
140
  var AUTHLESS_SCHEMA = {
140
141
  type: "object",
141
142
  properties: {},
@@ -250,7 +251,7 @@ async function handleMcpMessage(message, client = createRemoteClientFromEnv()) {
250
251
  if (message?.method === "initialize") {
251
252
  return jsonRpcResult(id, {
252
253
  protocolVersion: "2024-11-05",
253
- serverInfo: { name: "mementos", version: "0.14.22" },
254
+ serverInfo: { name: "mementos", version: MEMENTOS_MCP_VERSION },
254
255
  capabilities: { tools: {} }
255
256
  });
256
257
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/mementos",
3
- "version": "0.14.23",
3
+ "version": "0.14.24",
4
4
  "description": "Remote-only mementos.md SaaS CLI and MCP client",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",