Skip to content
VS Code

Vintage for VS Code

io.github.rezasoleymanifar/vintage

Free financial data from eleven sources behind six verbs, point-in-time where the source allows.

client:VS Code transport:stdio runtime:pypi

Install Vintage in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "vintage-user-agent",
      "description": "VINTAGE_USER_AGENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "fred-api-key",
      "description": "FRED_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "vintage-cache-dir",
      "description": "VINTAGE_CACHE_DIR",
      "password": true
    }
  ],
  "servers": {
    "vintage": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "vintage-mcp"
      ],
      "env": {
        "VINTAGE_USER_AGENT": "${input:vintage-user-agent}",
        "FRED_API_KEY": "${input:fred-api-key}",
        "VINTAGE_CACHE_DIR": "${input:vintage-cache-dir}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Vintage in other clients