Turn Claude or Cursor into your personal AI Financial Analyst.
- Install uv.
- An API Key from FinancialData.net.
Add the following to your Claude Desktop config file or Cursor MCP settings:
{
"mcpServers": {
"financial-data": {
"command": "/path/to/uv",
"args": [
"--directory",
"/absolute/path/to/mcp-server",
"run",
"server.py"
],
"env": {
"FINANCIAL_DATA_API_KEY": "paste_your_api_key_here"
}
}
}
}
To set up your MCP server, follow these steps to update your configuration:
-
Replace /path/to/uv: Open your terminal and run which uv (Mac/Linux) or where uv (Windows). Replace the placeholder in the "command" field with that result.
-
Replace /absolute/path/to/mcp-server: Find the full folder path where your server.py is saved. Replace the placeholder in the "--directory" argument with this path.
-
Add your API key: Replace "paste_your_api_key_here" with your actual FINANCIAL_DATA_API_KEY.