fmp-stable-api

Vimal-Seshadri-Raguraman/fmp-stable-api
★ 0 stars Python API Integration Updated today
Financial Modeling Prep API client — auto-updating endpoints, GUI, and MCP server
View on GitHub → Try with Claude — $10 free →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "fmp-stable-api": {
      "command": "uvx",
      "args": [
        "fmp-stable-api"
      ]
    }
  }
}

Or install with pip: pip install fmp-stable-api

README Excerpt

**Financial Modeling Prep API client** — auto-updating endpoints, GUI manager, and optional MCP server. ```bash pip install fmp-stable-api # API client + GUI pip install fmp-stable-api[mcp] # also includes the MCP server ``` ```python from fmp_stable_api import FMP client = FMP(client_type="Premium", client_key="your_api_key")