@claudeink/mcp-server 2.2.0 → 2.2.1
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/cli.js +11 -10
- package/dist/index.js +11 -10
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -32878,17 +32878,18 @@ async function inkSave(input) {
|
|
|
32878
32878
|
}
|
|
32879
32879
|
const creds = await getCredentials();
|
|
32880
32880
|
if (creds?.token) {
|
|
32881
|
-
const
|
|
32881
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
32882
32882
|
fireAndForgetPush({
|
|
32883
|
-
knowledge:
|
|
32884
|
-
id:
|
|
32885
|
-
title:
|
|
32886
|
-
tags:
|
|
32887
|
-
category:
|
|
32888
|
-
source_type:
|
|
32889
|
-
|
|
32890
|
-
|
|
32891
|
-
|
|
32883
|
+
knowledge: [{
|
|
32884
|
+
id: localId,
|
|
32885
|
+
title: input.title,
|
|
32886
|
+
tags: input.tags || [],
|
|
32887
|
+
category: input.category || "reference",
|
|
32888
|
+
source_type: input.source_type || "conversation",
|
|
32889
|
+
url: input.url,
|
|
32890
|
+
created_at: now,
|
|
32891
|
+
updated_at: now
|
|
32892
|
+
}],
|
|
32892
32893
|
crawlerSources: []
|
|
32893
32894
|
});
|
|
32894
32895
|
}
|
package/dist/index.js
CHANGED
|
@@ -25093,17 +25093,18 @@ async function inkSave(input) {
|
|
|
25093
25093
|
}
|
|
25094
25094
|
const creds = await getCredentials();
|
|
25095
25095
|
if (creds?.token) {
|
|
25096
|
-
const
|
|
25096
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
25097
25097
|
fireAndForgetPush({
|
|
25098
|
-
knowledge:
|
|
25099
|
-
id:
|
|
25100
|
-
title:
|
|
25101
|
-
tags:
|
|
25102
|
-
category:
|
|
25103
|
-
source_type:
|
|
25104
|
-
|
|
25105
|
-
|
|
25106
|
-
|
|
25098
|
+
knowledge: [{
|
|
25099
|
+
id: localId,
|
|
25100
|
+
title: input.title,
|
|
25101
|
+
tags: input.tags || [],
|
|
25102
|
+
category: input.category || "reference",
|
|
25103
|
+
source_type: input.source_type || "conversation",
|
|
25104
|
+
url: input.url,
|
|
25105
|
+
created_at: now,
|
|
25106
|
+
updated_at: now
|
|
25107
|
+
}],
|
|
25107
25108
|
crawlerSources: []
|
|
25108
25109
|
});
|
|
25109
25110
|
}
|