MCP Workflows
The EdgarTools MCP server ships with 7 pre-built analysis workflows that chain tools together into multi-step research patterns. These are MCP prompts -- templates that guide Claude through a complete analysis.
Pre-Built Workflows
| Workflow | What it does | Key parameter |
|---|---|---|
| due_diligence | Full company analysis -- profile, financials, risks, insider activity | identifier (ticker/CIK) |
| earnings_analysis | Earnings deep dive -- latest 8-K, trends, peer comparison | identifier |
| industry_overview | Sector survey -- screen companies, compare top players, identify trends | industry (keyword) |
| insider_monitor | Track insider buying and selling patterns | identifier |
| fund_analysis | Mutual fund or ETF deep dive -- holdings, performance, family | identifier (fund ticker/CIK) |
| filing_comparison | Compare filings across time or across companies | identifier, optional form (default: 10-K), optional compare_to |
| activist_tracking | Monitor SC 13D/G activist investor positions | identifier |
These are templates, not black boxes. Claude follows them step by step, and you can interrupt, redirect, or drill deeper at any point.
Due Diligence
"Run a due diligence analysis on NVDA"
Claude walks through:
- Company profile --
edgar_companywith full financials and filings - Financial trends --
edgar_trendsfor revenue, net income, and EPS over 5 years - Risk factors --
edgar_readextracts Item 1A from the latest 10-K - Recent events --
edgar_readchecks the latest 8-K for material events - Insider activity --
edgar_ownershipreviews recent Form 4 transactions - Synthesis -- business overview, financial health, key risks, insider sentiment
Earnings Analysis
"Analyze Microsoft's recent earnings"
Claude walks through:
- Latest earnings --
edgar_readfinds the most recent earnings 8-K - Financial trends --
edgar_trendsfor revenue, net income, EPS, and gross profit (annual and quarterly) - Peer comparison --
edgar_compareagainst 2-3 peer companies - Management commentary --
edgar_readextracts MD&A from the latest 10-K/10-Q - Synthesis -- growth trends, margin analysis, peer performance, management outlook
Industry Overview
"Give me an overview of the semiconductor industry"
Claude walks through:
- Screen companies --
edgar_screendiscovers companies in the sector - Top players -- selects the 3-5 largest companies from results
- Comparative analysis --
edgar_compareon revenue, net income, margins, and assets - Growth trends --
edgar_trendsfor the top 2-3 sector leaders - Recent activity --
edgar_monitorchecks for recent filings from sector companies - Synthesis -- landscape, comparative performance, growth dynamics, recent events
Insider Monitor
"Track insider activity at Tesla"
Claude walks through:
- Company context --
edgar_companyfor company profile - Insider transactions --
edgar_ownershippulls recent Form 4 filings - Financial context --
edgar_trendsfor revenue, net income, and EPS - Recent filings --
edgar_monitorchecks for very recent Form 4 filings - Synthesis -- who is buying/selling, patterns, alignment with financials, notable transactions
Fund Analysis
"Deep dive into SPY"
Claude walks through:
- Fund lookup --
edgar_fundgets fund hierarchy (company, series, share classes, tickers) - Portfolio holdings --
edgar_fundretrieves current holdings, top positions, sector concentration - Money market check -- if applicable, gets yield data, WAM/WAL, and share class details
- Top holdings analysis --
edgar_companyfor the top 3-5 portfolio holdings - Related funds --
edgar_fundsearches for other funds in the same family - Synthesis -- overview, composition, concentration, key metrics, related funds
Filing Comparison
"Compare Apple's 10-K filings year over year"
Claude walks through:
- Company profile --
edgar_companyfor context - Latest filing --
edgar_readextracts business, risk factors, and MD&A - Previous filing --
edgar_searchfinds the prior year's filing,edgar_readextracts same sections - Financial trends --
edgar_trendsfor revenue, net income, EPS, and assets - Recent events --
edgar_readchecks for 8-Ks between the two filing periods - Synthesis -- business changes, new/removed risks, MD&A tone shifts, financial trajectory
For cross-company comparison, add a second company: "Compare Apple's 10-K to Microsoft's 10-K"
Activist Tracking
"Track activist investors at Disney"
Claude walks through:
- Company profile --
edgar_companyfor financial and governance context - SC 13D filings --
edgar_readfinds activist ownership filings (>5% with intent to influence) - SC 13G filings --
edgar_readfinds passive large holder filings - Proxy context --
edgar_proxyfor executive compensation and governance data - Full-text search --
edgar_text_searchfor activist-related mentions - Insider activity --
edgar_ownershipchecks insider trading around activist events - Synthesis -- active 13D filers, passive holders, governance posture, timeline, outlook
Your First 10 Minutes
After setting up the MCP server, try these three prompts to see the tools in action:
1. Company snapshot
"Tell me about Nvidia -- profile and recent financials"
Claude calls edgar_company and returns:
{
"company": "NVIDIA CORP",
"profile": {
"industry": "Semiconductors & Related Devices",
"exchanges": ["Nasdaq"],
"shares_outstanding": 24300000000
},
"financials": {
"periods": 4,
"period_type": "annual",
"income_statement": "FY 2026 | FY 2025 | FY 2024 | FY 2023 ..."
}
}
What to look for: Revenue figures and filing dates. These are live from EDGAR, not Claude's training data. If you see current fiscal years, it's working.
2. Live filings
"What 8-K filings were submitted to the SEC in the last hour?"
Claude calls edgar_monitor and returns:
{
"filings": [
{"form": "8-K", "filed": "2026-03-26", "company": "Haymaker Acquisition Corp. 4"},
{"form": "8-K", "filed": "2026-03-26", "company": "GUOCHUN INTERNATIONAL INC."},
{"form": "8-K", "filed": "2026-03-26", "company": "Quoin Pharmaceuticals, Ltd."}
]
}
What to look for: Today's date in the filed field. These are filings that just hit the SEC's servers.
3. Executive compensation
"What is Apple's CEO compensation?"
Claude calls edgar_proxy and returns:
{
"company": "Apple Inc.",
"ceo": {"name": "Mr. Cook", "total_comp": 74294811, "actually_paid": 108423733},
"pay_vs_performance": {"company_tsr": 233.88, "peer_tsr": 279.51},
"performance_measures": ["Net Sales", "Operating Income", "Relative TSR"]
}
What to look for: Structured compensation data extracted from XBRL-tagged proxy statements -- not scraped text.
Be specific about using EDGAR
If Claude answers from its training data instead of calling tools, be explicit: "Using your SEC tools, check EDGAR for..."