MCP.so
Sign In
Servers

MCP Server For Alpha Vantage

@nazimboudeffa

Work in Progress as I don't have a PREMIUM subscription to Claude

An MCP Server for Alpha Vantage

  • Python 3.12+
  • uv package manager
  • MCP-compatible client (e.g., Claude for Desktop)
  1. Clone this repository:

    git clone https://github.com/nazimboudeffa/mcp-server-alphavantage.git
    cd mcp-server-alphavantage
    
  2. Install dependencies

    pip install uv
    uv add "mcp[cli]"
    
  3. Create a .env file with your API KEY:

    API_KEY=demo
    
  4. Install the server

    mcp install server.py
    

Check the Claude for Desktop config file

{
  "mcpServers": {
    "alphavantage": {
      "command": "C:\\Users\\YOU_USERNAME\\AppData\\Local\\Programs\\Python\\Python313\\Scripts\\uv.EXE",
      "args": [
        "run",
        "--with",
        "mcp[cli]",
        "mcp",
        "run",
        "C:\\Users\\YOUR_USERNAME\\Documents\\GitHub\\mcp-server-alphavantage\\server.py"
      ]
    }
  }
}

More from Other