@financialmodelingprep/mcp
v1.0.2
Published
MCP server exposing Financial Modeling Prep (FMP) data tools over stdio
Maintainers
Readme
FMP MCP Server
MCP server exposing the Financial Modeling Prep API through the Model Context Protocol. Built on @financialmodelingprep/tools — all ~90 tools (stock data, financials, SEC filings, insider trades, etc.) are available to any MCP client.
Installation
bun add -g @financialmodelingprep/mcpOr run directly without installing:
bunx @financialmodelingprep/mcpSetup
After a global install, the fmp-mcp binary is on your PATH. Configure it in your AI client (e.g., Claude Desktop, VS Code settings, opencode.json):
{
"mcpServers": {
"fmp": {
"command": "fmp-mcp",
"env": {
"FMP_KEY": "<your-api-key>",
"REDIS_URL": "redis://..."
}
}
}
}Or, without a global install, run it on demand:
{
"mcpServers": {
"fmp": {
"command": "bunx",
"args": ["@financialmodelingprep/mcp"],
"env": {
"FMP_KEY": "<your-api-key>",
"REDIS_URL": "redis://..."
}
}
}
}FMP_KEY and REDIS_URL are required in env or config.
Development
bun test # integration tests (skipped without FMP_KEY)
bun run typecheck