From e146a988d6c23fc71f647fad965ce8104942b6f4 Mon Sep 17 00:00:00 2001 From: Anson Huang Date: Wed, 18 Mar 2026 15:29:55 -0700 Subject: [PATCH] Update examples in `descriptive` property to use boolean type --- mcp-server/src/schema/table.schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mcp-server/src/schema/table.schema.ts b/mcp-server/src/schema/table.schema.ts index 6a98e01..c216283 100644 --- a/mcp-server/src/schema/table.schema.ts +++ b/mcp-server/src/schema/table.schema.ts @@ -10,7 +10,7 @@ export const baseProperties = { descriptive: { type: 'boolean', description: 'Add variable labels to the second row of the API results.', - examples: ['true', 'false'], + examples: [true, false], }, predicates: { type: 'object',