From b801c5f7bf332298173d78190f1a6ddee8d2100a Mon Sep 17 00:00:00 2001 From: Olivier Chafik Date: Tue, 14 Oct 2025 20:20:49 +0100 Subject: [PATCH] zip: default value for files --- src/everything/everything.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/everything/everything.ts b/src/everything/everything.ts index 1c55221a..5e9dd086 100644 --- a/src/everything/everything.ts +++ b/src/everything/everything.ts @@ -131,7 +131,9 @@ const StructuredContentSchema = { }; const ZipResourcesInputSchema = z.object({ - files: z.record(z.string().url().describe("URL of the file to include in the zip")).describe("Mapping of file names to URLs to include in the zip"), + files: z.record(z.string().url().describe("URL of the file to include in the zip")).describe("Mapping of file names to URLs to include in the zip").default({ + "README.md": "https://raw.githubusercontent.com/modelcontextprotocol/servers/refs/heads/main/README.md", + }), outputType: z.enum([ 'resourceLink', 'resource'