anthropics / anthropics/financial-services

financial-analysis .mcp.json is invalid JSON (missing comma + brace) — breaks all 11 MCP connectors

Open
#292 1 comment 0 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
34.8k
Forks
5.2k
Avg merge
2h 2m
Merged PRs (30d)
3

Description

**Plugin**: `financial-analysis` (vertical-plugins), version 0.1.1
**File**: `plugins/vertical-plugins/financial-analysis/.mcp.json`

### Bug
The `.mcp.json` file is invalid JSON:
- Missing comma after the `egnyte` server entry, before `box`
- Missing closing brace for the `box` object / root object

Confirmed with `JSON.parse`:

### Impact
Because the file fails to parse, Claude Code cannot register **any** of the 11 MCP connectors bundled in this plugin (Daloopa, Morningstar, S&P Global, FactSet, Moody's, MT Newswires, Aiera, LSEG, PitchBook, Chronograph, Egnyte, Box) — `claude mcp list` shows zero servers after installing the plugin.

### Fix
Add the missing comma after the `egnyte` block and close the `box` object / root object properly:
​```json
"egnyte": {
"type": "http",
"url": "https://mcp-server.egnyte.com/mcp"
},
"box": {
"type": "http",
"url": "https://mcp.box.com"
}
}
}
​```

Verified locally that this fix produces valid JSON and lets Claude Code register the connectors.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.