MCP HubMCP Hub
calvernaz

alphavantage

by: calvernaz

A MCP server for the stock market data API, Alphavantage API.

30created 06/12/2024
Visit
API
Stock

📌Overview

Purpose: To provide a MCP server that facilitates access to stock market data through the Alphavantage API.

Overview: The Alphavantage MCP Server is designed to streamline the integration of stock market data into applications by utilizing the Alphavantage API. Users can easily set up the service by configuring their API key and connecting it to the desired environment.

Key Features:

  • API Key Configuration: Easily integrates with the Alphavantage API through a straightforward setup process that includes obtaining and configuring an API key in environment variables.

  • Seamless Integration: The server can be quickly cloned and configured with desktop applications like Claude, allowing for smooth and efficient usage of stock market data.


Alphavantage MCP Server

A MCP server for the stock market data API, Alphavantage API.

Configuration

Getting an API Key

  1. Sign up for a Free Alphavantage API key.
  2. Add the API key to your environment variables as ALPHAVANTAGE_API_KEY.

Clone the Project

git clone https://github.com/calvernaz/alphavantage.git

Usage with Claude Desktop

Add the following configuration to your claude_desktop_config.json:

{
  "mcpServers": {
    "alphavantage": {
      "command": "uv",
      "args": [
        "--directory",
        "<DIRECTORY-OF-CLONED-PROJECT>/alphavantage",
        "run",
        "alphavantage"
      ],
      "env": {
        "ALPHAVANTAGE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}