@lousy-agents/mcp 5.8.4 → 5.8.6
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/mcp-server.js +18 -5
- package/dist/mcp-server.js.map +1 -1
- package/package.json +2 -2
package/dist/mcp-server.js
CHANGED
|
@@ -30179,10 +30179,9 @@ const CursorSchema = schemas_string();
|
|
|
30179
30179
|
*/
|
|
30180
30180
|
const TaskCreationParamsSchema = looseObject({
|
|
30181
30181
|
/**
|
|
30182
|
-
*
|
|
30183
|
-
* If null, the task has unlimited lifetime until manually cleaned up.
|
|
30182
|
+
* Requested duration in milliseconds to retain task from creation.
|
|
30184
30183
|
*/
|
|
30185
|
-
ttl:
|
|
30184
|
+
ttl: schemas_number().optional(),
|
|
30186
30185
|
/**
|
|
30187
30186
|
* Time in milliseconds to wait between task status requests.
|
|
30188
30187
|
*/
|
|
@@ -30594,7 +30593,11 @@ const ClientCapabilitiesSchema = schemas_object({
|
|
|
30594
30593
|
/**
|
|
30595
30594
|
* Present if the client supports task creation.
|
|
30596
30595
|
*/
|
|
30597
|
-
tasks: ClientTasksCapabilitySchema.optional()
|
|
30596
|
+
tasks: ClientTasksCapabilitySchema.optional(),
|
|
30597
|
+
/**
|
|
30598
|
+
* Extensions that the client supports. Keys are extension identifiers (vendor-prefix/extension-name).
|
|
30599
|
+
*/
|
|
30600
|
+
extensions: record(schemas_string(), AssertObjectSchema).optional()
|
|
30598
30601
|
});
|
|
30599
30602
|
const InitializeRequestParamsSchema = BaseRequestParamsSchema.extend({
|
|
30600
30603
|
/**
|
|
@@ -30665,7 +30668,11 @@ const ServerCapabilitiesSchema = schemas_object({
|
|
|
30665
30668
|
/**
|
|
30666
30669
|
* Present if the server supports task creation.
|
|
30667
30670
|
*/
|
|
30668
|
-
tasks: ServerTasksCapabilitySchema.optional()
|
|
30671
|
+
tasks: ServerTasksCapabilitySchema.optional(),
|
|
30672
|
+
/**
|
|
30673
|
+
* Extensions that the server supports. Keys are extension identifiers (vendor-prefix/extension-name).
|
|
30674
|
+
*/
|
|
30675
|
+
extensions: record(schemas_string(), AssertObjectSchema).optional()
|
|
30669
30676
|
});
|
|
30670
30677
|
/**
|
|
30671
30678
|
* After receiving an initialize request from the client, the server sends this response.
|
|
@@ -30939,6 +30946,12 @@ const ResourceSchema = schemas_object({
|
|
|
30939
30946
|
* The MIME type of this resource, if known.
|
|
30940
30947
|
*/
|
|
30941
30948
|
mimeType: optional(schemas_string()),
|
|
30949
|
+
/**
|
|
30950
|
+
* The size of the raw resource content, in bytes (i.e., before base64 encoding or any tokenization), if known.
|
|
30951
|
+
*
|
|
30952
|
+
* This can be used by Hosts to display file sizes and estimate context window usage.
|
|
30953
|
+
*/
|
|
30954
|
+
size: optional(schemas_number()),
|
|
30942
30955
|
/**
|
|
30943
30956
|
* Optional annotations for the client.
|
|
30944
30957
|
*/
|