minutes-mcp 0.12.2 → 0.13.0

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/dist/index.js +1 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -192,7 +192,7 @@ function findMinutesBinary() {
192
192
  }
193
193
  let MINUTES_BIN = findMinutesBinary();
194
194
  // ── Expected CLI version (must match this MCP server release) ──
195
- const MCP_SERVER_VERSION = "0.12.2";
195
+ const MCP_SERVER_VERSION = "0.13.0";
196
196
  const EXPECTED_CLI_VERSION = MCP_SERVER_VERSION;
197
197
  export function parseKnowledgeConfig(configContent) {
198
198
  const knowledgeMatch = configContent.match(/\[knowledge\][\s\S]*?(?=\n\[|$)/);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minutes-mcp",
3
- "version": "0.12.2",
3
+ "version": "0.13.0",
4
4
  "description": "MCP server for minutes — conversation memory for AI assistants. Works with Claude Desktop, Mistral Vibe, Cursor, Windsurf, and any MCP client.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -40,7 +40,7 @@
40
40
  "dependencies": {
41
41
  "@modelcontextprotocol/ext-apps": "^1.5.0",
42
42
  "@modelcontextprotocol/sdk": "^1.29.0",
43
- "minutes-sdk": "^0.12.2",
43
+ "minutes-sdk": "^0.13.0",
44
44
  "yaml": "^2.8.3",
45
45
  "zod": "^3.25 || ^4.0"
46
46
  },