@pipeworx/fmp
Financial Modeling Prep v3 MCP — company fundamentals, financial statements, ratios, valuation. Free 250 req/day.
Part of Pipeworx — an MCP gateway connecting AI agents to 1476+ live data sources.
Auth
- Platform:
PLATFORM_FMP_KEY. BYO:?_apiKey=….
Tools
Profile / quote
profile(symbol)— company profilequote(symbol)— current quote (comma-sep for batch)quote_short(symbol)— minimal quotehistorical_price(symbol, from?, to?, serietype?)— daily historyintraday(symbol, interval)— intraday (1min|5min|15min|30min|1hour|4hour)
Statements
income_statement(symbol, period?, limit?)— income statement (annual|quarter)balance_sheet(symbol, period?, limit?)— balance sheetcash_flow(symbol, period?, limit?)— cash flowratios(symbol, period?, limit?)— financial ratiosenterprise_value(symbol, period?, limit?)— EVkey_metrics(symbol, period?, limit?)— TTM key metricsfinancial_growth(symbol, period?, limit?)— growth rates
Reference
search(query, limit?, exchange?)— symbol searchsearch_ticker(query, limit?, exchange?)— ticker searchstock_screener(marketCapMoreThan?, marketCapLowerThan?, sector?, industry?, country?, exchange?, dividendMoreThan?, dividendLowerThan?, betaMoreThan?, betaLowerThan?, volumeMoreThan?, volumeLowerThan?, isEtf?, isActivelyTrading?, limit?)— screeneravailable_symbols()— full symbol list
Events / news
stock_news(tickers?, page?, limit?)— newsearnings_calendar(from?, to?)— earningseconomic_calendar(from?, to?)— economic eventsipos(from?, to?)— IPOsmergers(page?)— M&Adelisted()— delisted companies
Ownership
insider_trading(symbol?, page?, limit?)— insider tradinginstitutional_holders(symbol)— institutional holdersetf_holders(symbol)— ETF holders
Data source
https://financialmodelingprep.com/api/v3
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"fmp": {
"url": "https://gateway.pipeworx.io/fmp/mcp"
}
}
}
What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/fmp/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1476+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Fmp data" })
The gateway picks the right tool and fills the arguments automatically.
More
License
MIT