Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Start with **financial-analysis** — it carries the shared modeling skills and

| Plugin | What it adds |
|---|---|
| **[financial-analysis](./plugins/vertical-plugins/financial-analysis)** *(core)* | Comps, DCF, LBO, 3-statement, deck QC, Excel audit. All 11 data connectors. |
| **[financial-analysis](./plugins/vertical-plugins/financial-analysis)** *(core)* | Comps, DCF, LBO, 3-statement, deck QC, Excel audit. All 13 data connectors. |
| **[investment-banking](./plugins/vertical-plugins/investment-banking)** | CIMs, teasers, process letters, buyer lists, merger models, deal tracking. |
| **[equity-research](./plugins/vertical-plugins/equity-research)** | Earnings notes, initiations, model updates, thesis and catalyst tracking. |
| **[private-equity](./plugins/vertical-plugins/private-equity)** | Sourcing, screening, diligence checklists, IC memos, portfolio monitoring. |
Expand Down Expand Up @@ -132,6 +132,7 @@ All connectors are centralized in the **financial-analysis** core plugin and sha
| [Chronograph](https://www.chronograph.pe/) | `https://ai.chronograph.pe/mcp` |
| [Egnyte](https://www.egnyte.com/) | `https://mcp-server.egnyte.com/mcp` |
| [Box](https://www.box.com/home) | `https://mcp.box.com` |
| [Xquik](https://xquik.com/) | `https://xquik.com/mcp` |

> MCP access may require a subscription or API key from the provider.

Expand Down
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
7 changes: 6 additions & 1 deletion plugins/vertical-plugins/financial-analysis/.mcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,14 @@
"egnyte": {
"type": "http",
"url": "https://mcp-server.egnyte.com/mcp"
}
},
"box": {
"type": "http",
"url": "https://mcp.box.com"
},
"xquik": {
"type": "http",
"url": "https://xquik.com/mcp"
}
}
}
3 changes: 2 additions & 1 deletion scripts/check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Checks:
1. Every *.yaml under managed-agents/ parses.
2. Every plugin.json / marketplace.json / steering-examples.json parses.
2. Every plugin, marketplace, steering example, and MCP JSON file parses.
3. Every <vertical>/agents/*.md has valid YAML frontmatter with name + description.
4. Every system.file, skills[].path, callable_agents[].manifest in agent.yaml
and subagent yamls resolves to an existing file/dir.
Expand Down Expand Up @@ -78,6 +78,7 @@ def rel(p: Path) -> str:
json_globs = [
".claude-plugin/marketplace.json",
"plugins/**/.claude-plugin/plugin.json",
"plugins/**/.mcp.json",
"managed-agent-cookbooks/*/steering-examples.json",
]
for pat in json_globs:
Expand Down