Skip to content

financialdatanet/mcp-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

FinancialData.net MCP Server

Turn Claude or Cursor into your personal AI Financial Analyst.

Setup

1. Requirements

2. Connection

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:

  1. 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.

  2. 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.

  3. Add your API key: Replace "paste_your_api_key_here" with your actual FINANCIAL_DATA_API_KEY.