sonance-brand-mcp 1.3.43 → 1.3.44

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -608,7 +608,7 @@ export async function POST(request: Request) {
608
608
  // Total budget: 100k chars (~25k tokens, safe for Claude)
609
609
  // Priority: Recommended file (full) > Page file (limited) > Other components (dynamic)
610
610
  const TOTAL_CONTEXT_BUDGET = 100000;
611
- const MAX_RECOMMENDED_FILE = 50000; // 50k chars max for recommended file
611
+ const MAX_RECOMMENDED_FILE = 80000; // 80k chars max for recommended file
612
612
  const MAX_PAGE_FILE = 2000; // Page file is just a wrapper
613
613
  const MAX_GLOBALS_CSS = 1500;
614
614
  const MAX_FILES = 25;
@@ -618,7 +618,7 @@ export async function POST(request: Request) {
618
618
  // Total budget: 100k chars (~25k tokens, safe for Claude)
619
619
  // Priority: Recommended file (full) > Page file (limited) > Other components (dynamic)
620
620
  const TOTAL_CONTEXT_BUDGET = 100000;
621
- const MAX_RECOMMENDED_FILE = 50000; // 50k chars max for recommended file
621
+ const MAX_RECOMMENDED_FILE = 80000; // 80k chars max for recommended file
622
622
  const MAX_PAGE_FILE = 2000; // Page file is just a wrapper
623
623
  const MAX_GLOBALS_CSS = 1500;
624
624
  const MAX_FILES = 25;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sonance-brand-mcp",
3
- "version": "1.3.43",
3
+ "version": "1.3.44",
4
4
  "description": "MCP Server for Sonance Brand Guidelines and Component Library - gives Claude instant access to brand colors, typography, and UI components.",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",