From 87306c876a830bf31bbcc096e4343b990573a51a Mon Sep 17 00:00:00 2001 From: enesgules Date: Fri, 5 Sep 2025 13:53:29 +0300 Subject: [PATCH] fix: reduce default minimum token threshold from 10000 to 1000 --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index cca38f6..33a36d4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -12,7 +12,7 @@ import { SSEServerTransport } from "@modelcontextprotocol/sdk/server/sse.js"; import { Command } from "commander"; import { IncomingMessage } from "http"; -const DEFAULT_MINIMUM_TOKENS = 10000; +const DEFAULT_MINIMUM_TOKENS = 1000; // Parse CLI arguments using commander const program = new Command()