From 950443ab6e2f2d4a3b0802191aadf4a66ebc0844 Mon Sep 17 00:00:00 2001 From: leslieqy901023-prog Date: Mon, 1 Jun 2026 18:02:34 +0800 Subject: [PATCH] Fix malformed JSON in financial-analysis .mcp.json The "Adding Box" change (#187) left the Box server entry with a missing comma after the egnyte block and an unclosed brace, making the entire mcpServers config invalid JSON. Any fresh install or update of the financial-analysis plugin would fail to load all connectors. Add the missing comma and close the Box object brace. Validated with `python3 scripts/check.py` (0 issues). Co-Authored-By: Claude Opus 4.8 (1M context) --- .../financial-analysis/.claude-plugin/plugin.json | 2 +- plugins/vertical-plugins/financial-analysis/.mcp.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/vertical-plugins/financial-analysis/.claude-plugin/plugin.json b/plugins/vertical-plugins/financial-analysis/.claude-plugin/plugin.json index 8bb83a79a..2e83c09b6 100644 --- a/plugins/vertical-plugins/financial-analysis/.claude-plugin/plugin.json +++ b/plugins/vertical-plugins/financial-analysis/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "financial-analysis", - "version": "0.1.1", + "version": "0.1.2", "description": "Core financial modeling and analysis tools: DCF, comps, LBO, 3-statement models, competitive analysis, and deck QC", "author": { "name": "Anthropic FSI" diff --git a/plugins/vertical-plugins/financial-analysis/.mcp.json b/plugins/vertical-plugins/financial-analysis/.mcp.json index 7d9577f8e..17c9d2320 100644 --- a/plugins/vertical-plugins/financial-analysis/.mcp.json +++ b/plugins/vertical-plugins/financial-analysis/.mcp.json @@ -43,9 +43,10 @@ "egnyte": { "type": "http", "url": "https://mcp-server.egnyte.com/mcp" - } + }, "box": { "type": "http", "url": "https://mcp.box.com" + } } }