From f134b18bde24f473a07eda3cde2693a5beb668f9 Mon Sep 17 00:00:00 2001 From: zgaetano Date: Tue, 31 Mar 2026 15:33:48 -0400 Subject: [PATCH] Add wave-mcp/src/constants.ts --- wave-mcp/src/constants.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 wave-mcp/src/constants.ts diff --git a/wave-mcp/src/constants.ts b/wave-mcp/src/constants.ts new file mode 100644 index 0000000..5763328 --- /dev/null +++ b/wave-mcp/src/constants.ts @@ -0,0 +1,4 @@ +export const WAVE_GRAPHQL_URL = "https://gql.waveapps.com/graphql/public"; +export const CHARACTER_LIMIT = 25000; +export const DEFAULT_PAGE_SIZE = 20; +export const MAX_PAGE_SIZE = 100;