From 72bfac437b0698fd22967eb2963465121c19e7e5 Mon Sep 17 00:00:00 2001 From: zgaetano Date: Tue, 31 Mar 2026 15:33:30 -0400 Subject: [PATCH] Add erpnext-mcp/src/constants.ts --- erpnext-mcp/src/constants.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 erpnext-mcp/src/constants.ts diff --git a/erpnext-mcp/src/constants.ts b/erpnext-mcp/src/constants.ts new file mode 100644 index 0000000..1bdbb73 --- /dev/null +++ b/erpnext-mcp/src/constants.ts @@ -0,0 +1,7 @@ +export const CHARACTER_LIMIT = 25000; +export const DEFAULT_PAGE_SIZE = 20; +export const MAX_PAGE_SIZE = 100; + +// ERPNext API base paths +export const RESOURCE_PATH = "/api/resource"; +export const METHOD_PATH = "/api/method";