@clipform/mcp-server 1.47.1 → 1.48.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.
- package/dist/{chunk-JT7YWEQP.js → chunk-3MTEM3VC.js} +384 -45
- package/dist/{chunk-JT7YWEQP.js.map → chunk-3MTEM3VC.js.map} +1 -1
- package/dist/{chunk-PJNOCHKR.js → chunk-4CY5EJCR.js} +8 -1
- package/dist/{chunk-PJNOCHKR.js.map → chunk-4CY5EJCR.js.map} +1 -1
- package/dist/{chunk-MV27JVSL.js → chunk-BBNREY2Q.js} +2 -2
- package/dist/{chunk-UH77CDNO.js → chunk-WUORO245.js} +2 -2
- package/dist/index.js +4 -4
- package/dist/prompts.js +2 -2
- package/dist/resources.js +2 -2
- package/dist/server.js +4 -4
- package/package.json +1 -1
- /package/dist/{chunk-MV27JVSL.js.map → chunk-BBNREY2Q.js.map} +0 -0
- /package/dist/{chunk-UH77CDNO.js.map → chunk-WUORO245.js.map} +0 -0
|
@@ -2181,6 +2181,12 @@ function textResult(text) {
|
|
|
2181
2181
|
content: [{ type: "text", text }]
|
|
2182
2182
|
};
|
|
2183
2183
|
}
|
|
2184
|
+
function structuredResult(text, structuredContent) {
|
|
2185
|
+
return {
|
|
2186
|
+
content: [{ type: "text", text }],
|
|
2187
|
+
structuredContent
|
|
2188
|
+
};
|
|
2189
|
+
}
|
|
2184
2190
|
|
|
2185
2191
|
// src/lib/session-context.ts
|
|
2186
2192
|
async function getSessionContextWithAuth() {
|
|
@@ -2259,7 +2265,8 @@ export {
|
|
|
2259
2265
|
callApi,
|
|
2260
2266
|
errorResult,
|
|
2261
2267
|
textResult,
|
|
2268
|
+
structuredResult,
|
|
2262
2269
|
getSessionContextWithAuth,
|
|
2263
2270
|
getSessionContext
|
|
2264
2271
|
};
|
|
2265
|
-
//# sourceMappingURL=chunk-
|
|
2272
|
+
//# sourceMappingURL=chunk-4CY5EJCR.js.map
|