An MCP (Model Context Protocol) server that provides Financial Modeling Prep API integration for Claude Desktop. Built specifically for Investment Banking Analysts and M&A professionals to perform sophisticated financial analysis using natural language.
- π¦ Company Profiles - Get detailed company information including sector, industry, and descriptions
- π Financial Statements - Access income statements, balance sheets, and cash flow statements
- π Financial Ratios - Retrieve key metrics like P/E ratio, ROE, ROA, and more
- π° Enterprise Value - Get enterprise value calculations and multiples
- π Company Search - Search for companies by name to find ticker symbols
- π M&A Analysis - Perform comparable company analysis and sector valuations
- Python 3.8 or higher
- Node.js 14 or higher
- Claude Desktop application
- FMP API key (get one at financialmodelingprep.com)
- Install the package globally:
npm install -g @vipbat/fmp-mcp-server
- Install Python dependencies:
pip install mcp fastmcp httpx
Add the server to your Claude Desktop configuration:
Edit %APPDATA%\Claude\claude_desktop_config.json
Edit ~/Library/Application Support/Claude/claude_desktop_config.json
Add the following to the mcpServers
section:
{
"mcpServers": {
"fmp": {
"command": "npx",
"args": ["@vipbat/fmp-mcp-server"],
"env": {
"FMP_API_KEY": "your-fmp-api-key-here"
}
}
}
}
Once configured, restart Claude Desktop. You can then ask Claude to:
- "What's Apple's current P/E ratio?"
- "Show me Microsoft's income statements for the last 3 years"
- "Compare the EV/EBITDA multiples of major tech companies"
- "Analyze if Company X is undervalued compared to its sector peers"
- "What's the enterprise value of Tesla?"
- "Would AMD acquiring Marvell make sense?"
- "Estimate pro-forma Debt/EBITDA for Shopify acquiring Pinterest"
- "Estimate synergies if Twilio acquires Freshworks"
- "Retrieve the latest Enterprise Value and EBITDA for AppFolio and use it to calculate the current EV/EBITDA multiple manually. Then comment if it looks expensive or cheap versus historical averages"
- "Identify two midcap companies in the consumer discretionary sector that could be attractive M&A targets based on healthy EBITDA margins and manageable debt levels"
- "Estimate the post-acquisition debt/EBITDA ratio if Chewy (CHWY) were to acquire Five Below (FIVE) with a $2 billion cash+debt funded deal"
- "Assess whether a potential acquisition of Zynex (ZYXI) by Axon Enterprise (AXON) would make strategic sense based on sector overlap, size compatibility, and financial strength."
Fetches comprehensive company information including sector, industry, market cap, and description.
Retrieves income statements with revenue, expenses, and profit metrics.
- Parameters:
ticker
(required),limit
(optional, default: 4),period
(optional, default: "annual")
Gets balance sheet data including assets, liabilities, and equity.
- Parameters:
ticker
(required),limit
(optional, default: 4)
Accesses cash flow statements showing operating, investing, and financing activities.
- Parameters:
ticker
(required),limit
(optional, default: 4)
Retrieves financial ratios including P/E, P/B, ROE, ROA, and more.
- Parameters:
ticker
(required)
Gets enterprise value calculations and related metrics.
- Parameters:
ticker
(required),limit
(optional, default: 4)
Searches for companies by name to find ticker symbols.
- Parameters:
query
(required)
"Analyze whether Salesforce's acquisition of Slack was overvalued based on comparable SaaS company multiples"
"Compare the median EV/EBITDA ratios in the cybersecurity sector and identify which companies are trading below sector median"
"Evaluate Microsoft's financial health using key ratios and cash flow trends"
Make sure you've added your FMP API key to the Claude Desktop configuration file.
Ensure Python 3.8+ is installed and available in your system PATH.
Check that all Python dependencies are installed:
pip install mcp fastmcp httpx
Issues and pull requests are welcome at github.com/vipbat/fmp-mcp-server
MIT License - see LICENSE file for details
Built for the MCP (Model Context Protocol) ecosystem by Anthropic.