alexhancock/mcp-crate-cleanup (#4885)

This commit is contained in:
Alex Hancock
2025-09-29 17:00:17 -04:00
committed by GitHub
parent 2bd18a757b
commit cb0eca9966
78 changed files with 1039 additions and 1090 deletions
+7 -1
View File
@@ -2634,6 +2634,10 @@
}
}
},
"JsonObject": {
"type": "object",
"additionalProperties": true
},
"KillJobResponse": {
"type": "object",
"required": [
@@ -3982,7 +3986,9 @@
"arguments"
],
"properties": {
"arguments": {},
"arguments": {
"$ref": "#/components/schemas/JsonObject"
},
"id": {
"type": "string"
},
+5 -1
View File
@@ -348,6 +348,10 @@ export type InspectJobResponse = {
sessionId?: string | null;
};
export type JsonObject = {
[key: string]: unknown;
};
export type KillJobResponse = {
message: string;
};
@@ -840,7 +844,7 @@ export type ToolAnnotations = {
};
export type ToolConfirmationRequest = {
arguments: unknown;
arguments: JsonObject;
id: string;
prompt?: string | null;
toolName: string;