AlphaVantage

by lifejwang11

194 downloads
Not rated
GitHub

About

Bridges AlphaVantage's financial data ecosystem by providing real-time access to stock market, forex, cryptocurrency, and fundamental financial metrics for data-driven investment research and analysis.

Details

Author
lifejwang11
Repository
lifejwang11/alphavantage-mcp
Downloads
194
License
MIT License
Categories
AI, Design, Developer Tools, Search, Frontend, Infrastructure, Other
Tags
#analytics, #integration

This MCP server supports the following core AlphaVantage functionalities:

1. Stock Market Data

- Real-time quotes
- Historical price data
- Company information

2. Technical Indicators

- Moving averages
- RSI
- MACD and more

3. Fundamental Data
- Financial statements
- Earnings reports
- Company overview

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name AlphaVantage
    Command (node, npx, python, etc.) npx
    Arguments
    • Argument 1 -y
    • Argument 2 @highlight/mcp-server

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

To install AlphaVantage MCP Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @lifejwang11/alphavantage-mcp

1. Clone the project

git clone https://github.com/lifejwang11/alphavantage-mcp
cd alphavantage-mcp

2. Create and activate virtual environment (recommended)

```bash
python -m venv venv
source venv/bin/activate # Unix/macOS

1. Get AlphaVantage API Key

- Visit AlphaVantage website
- Register and obtain API key

2. Configure API Key

- Set ALPHAVANTAGE_API_KEY in environment variables
- Or configure in the configuration file

3. Service Calls
- Make calls through the MCP protocol
- Refer to API documentation for detailed interface specifications

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "alphavantage": {
            "env": {},
            "args": [
                "-y",
                "@highlight/mcp-server"
            ],
            "command": "npx"
        }
    }
}

Linux

{
    "env": [],
    "args": [
        "-y",
        "@highlight/mcp-server"
    ],
    "command": "npx"
}

Macos

{
    "env": [],
    "args": [
        "-y",
        "@highlight/mcp-server"
    ],
    "command": "npx"
}

Windows

{
    "env": [],
    "args": [
        "/c",
        "npx",
        "-y",
        "@highlight/mcp-server"
    ],
    "command": "cmd"
}

AlphaVantage MCP Server

smithery badge

This is a server based on the MCP (Model Control Protocol) framework, designed to integrate with the AlphaVantage financial data API service.The more information about AlphaVantage is here

Project Overview

AlphaVantage is an API service that provides real-time and historical financial market data, including:

- Stock market data
- Forex data
- Cryptocurrency data
- Technical indicators
- Fundamental data

This project encapsulates AlphaVantage's functionality into an MCP service, making it easier to integrate with other applications.

MCP Server Installation

Installing via Smithery

To install AlphaVantage MCP Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @lifejwang11/alphavantage-mcp

Prerequisites

- Python 3.12
- pip package manager

Installation Steps

1. Clone the project

git clone https://github.com/lifejwang11/alphavantage-mcp
cd alphavantage-mcp

2. Create and activate virtual environment (recommended)

```bash
python -m venv venv
source venv/bin/activate # Unix/macOS

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.