@avallon-labs/mcp 37.5.0 → 38.0.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/index.js
CHANGED
|
@@ -5988,6 +5988,9 @@ var ListArtifactsQueryParams = zod.object({
|
|
|
5988
5988
|
sort_order: zod.enum(["asc", "desc"]).default(listArtifactsQuerySortOrderDefault),
|
|
5989
5989
|
status: zod.enum(["processing", "parsed", "raw", "missing"]).optional(),
|
|
5990
5990
|
document_name_query: zod.string().optional(),
|
|
5991
|
+
case_id: zod.string().min(1).optional().describe(
|
|
5992
|
+
"Only artifacts linked to this case. Values are normalized server-side (trimmed and lowercased)."
|
|
5993
|
+
),
|
|
5991
5994
|
created_after: zod.string().datetime({}).optional(),
|
|
5992
5995
|
created_before: zod.string().datetime({}).optional(),
|
|
5993
5996
|
metadata: zod.record(zod.string(), zod.string()).optional().describe(
|
|
@@ -6191,8 +6194,11 @@ var ListCallsQueryParams = zod.object({
|
|
|
6191
6194
|
started_after: zod.string().datetime({}).optional(),
|
|
6192
6195
|
started_before: zod.string().datetime({}).optional(),
|
|
6193
6196
|
phone_number: zod.string().min(1).optional(),
|
|
6197
|
+
case_id: zod.string().min(1).optional().describe(
|
|
6198
|
+
"Only calls linked to this case. Values are normalized server-side (trimmed and lowercased)."
|
|
6199
|
+
),
|
|
6194
6200
|
metadata: zod.record(zod.string(), zod.string()).optional().describe(
|
|
6195
|
-
"Filter by metadata keys using bracket notation (e.g. metadata[
|
|
6201
|
+
"Filter by metadata keys using bracket notation (e.g. metadata[claim_id]=abc-123, metadata[source]=worker). Multiple filters are combined with AND logic."
|
|
6196
6202
|
)
|
|
6197
6203
|
});
|
|
6198
6204
|
var ListCallsResponseItem = zod.object({
|
|
@@ -7676,6 +7682,9 @@ var listChatsQueryOffsetMin = 0;
|
|
|
7676
7682
|
var listChatsQuerySortByDefault = `created_at`;
|
|
7677
7683
|
var listChatsQuerySortOrderDefault = `desc`;
|
|
7678
7684
|
var ListChatsQueryParams = zod.object({
|
|
7685
|
+
case_id: zod.string().min(1).optional().describe(
|
|
7686
|
+
"Only chats linked to this case. Values are normalized server-side (trimmed and lowercased)."
|
|
7687
|
+
),
|
|
7679
7688
|
count: zod.number().min(1).max(listChatsQueryCountMax).default(listChatsQueryCountDefault),
|
|
7680
7689
|
offset: zod.number().min(listChatsQueryOffsetMin).default(listChatsQueryOffsetDefault),
|
|
7681
7690
|
sort_by: zod.enum(["created_at"]).default(listChatsQuerySortByDefault),
|
|
@@ -7730,9 +7739,6 @@ var GetExtractResponse = zod.object({
|
|
|
7730
7739
|
processor_scope: zod.record(zod.string(), zod.unknown()),
|
|
7731
7740
|
extractor_job_id: zod.union([zod.string(), zod.null()]),
|
|
7732
7741
|
worker_run_id: zod.union([zod.string(), zod.null()]),
|
|
7733
|
-
case_id: zod.union([zod.string(), zod.null()]).describe(
|
|
7734
|
-
"Case this extract is associated with, or null if it is not linked to a case. Stored normalized (trimmed and lowercased)."
|
|
7735
|
-
),
|
|
7736
7742
|
result: zod.unknown(),
|
|
7737
7743
|
citations: zod.union([zod.unknown(), zod.null()]),
|
|
7738
7744
|
created_at: zod.string().datetime({})
|
|
@@ -7777,7 +7783,7 @@ var ListExtractsQueryParams = zod.object({
|
|
|
7777
7783
|
worker_run_id: zod.string().uuid().optional(),
|
|
7778
7784
|
worker_id: zod.string().uuid().optional(),
|
|
7779
7785
|
case_id: zod.string().min(1).optional().describe(
|
|
7780
|
-
"Filter extracts
|
|
7786
|
+
"Filter extracts linked to a specific case. Values are normalized server-side (trimmed and lowercased)."
|
|
7781
7787
|
),
|
|
7782
7788
|
created_after: zod.string().optional(),
|
|
7783
7789
|
created_before: zod.string().optional(),
|
|
@@ -7789,9 +7795,6 @@ var ListExtractsResponseItem = zod.object({
|
|
|
7789
7795
|
id: zod.string(),
|
|
7790
7796
|
extractor_job_id: zod.union([zod.string(), zod.null()]),
|
|
7791
7797
|
worker_run_id: zod.union([zod.string(), zod.null()]),
|
|
7792
|
-
case_id: zod.union([zod.string(), zod.null()]).describe(
|
|
7793
|
-
"Case this extract is associated with, or null if it is not linked to a case. Stored normalized (trimmed and lowercased)."
|
|
7794
|
-
),
|
|
7795
7798
|
processor_type: zod.string(),
|
|
7796
7799
|
processor_id: zod.string(),
|
|
7797
7800
|
processor_version: zod.number(),
|
|
@@ -8042,6 +8045,9 @@ var listSchedulesQuerySortOrderDefault = `asc`;
|
|
|
8042
8045
|
var ListSchedulesQueryParams = zod.object({
|
|
8043
8046
|
worker_id: zod.string().uuid().optional().describe("Only schedules that trigger this worker"),
|
|
8044
8047
|
rule_type: zod.enum(["once", "hourly", "daily", "weekly"]).optional().describe("Only schedules whose rule is of this type"),
|
|
8048
|
+
case_id: zod.string().min(1).optional().describe(
|
|
8049
|
+
"Only schedules linked to this case. Values are normalized server-side (trimmed and lowercased)."
|
|
8050
|
+
),
|
|
8045
8051
|
count: zod.number().min(1).max(listSchedulesQueryCountMax).default(listSchedulesQueryCountDefault),
|
|
8046
8052
|
offset: zod.number().min(listSchedulesQueryOffsetMin).default(listSchedulesQueryOffsetDefault),
|
|
8047
8053
|
sort_by: zod.enum(["created_at", "next_run_at"]).default(listSchedulesQuerySortByDefault),
|
|
@@ -9925,4 +9931,4 @@ var transport = new StdioServerTransport();
|
|
|
9925
9931
|
server.connect(transport).then(() => {
|
|
9926
9932
|
console.error("MCP server running on stdio");
|
|
9927
9933
|
}).catch(console.error);
|
|
9928
|
-
//# sourceMappingURL=server-
|
|
9934
|
+
//# sourceMappingURL=server-S5O7QERF.js.map
|