alpha-vantage

alpha-vantage

3.9

The Alpha Vantage MCP server provides seamless access to a vast array of financial market data, including stocks, forex, and cryptocurrencies.

The Alpha Vantage MCP server is a robust platform designed to provide seamless access to a vast array of financial market data. Whether you're interested in stocks, forex, or cryptocurrencies, this server offers comprehensive tools to obtain and analyze market information efficiently. Alpha Vantage is dedicated to democratizing data access by combining cutting-edge technology with a user-friendly approach.

Features

  • {'name': 'High Popularity and Reliability', 'description': 'With a high popularity rating and a 100% service level, the Alpha Vantage MCP server is trusted by professionals and enthusiasts alike for its reliability and performance.'}
  • {'name': 'Low Latency', 'description': 'Experience rapid data retrieval with an average latency of 350ms, ensuring you have access to real-time information when you need it.'}

Usage with Different Platforms

python

python
import requests

API_KEY = 'your_api_key'
BASE_URL = 'https://www.alphavantage.co/query'

params = {
    'function': 'TIME_SERIES_INTRADAY',
    'symbol': 'IBM',
    'interval': '5min',
    'apikey': API_KEY
}

response = requests.get(BASE_URL, params=params)
data = response.json()
print(data)

javascript

javascript
const axios = require('axios');

const API_KEY = 'your_api_key';
const BASE_URL = 'https://www.alphavantage.co/query';

const params = {
    function: 'TIME_SERIES_INTRADAY',
    symbol: 'IBM',
    interval: '5min',
    apikey: API_KEY
};

axios.get(BASE_URL, { params })
    .then(response => {
        console.log(response.data);
    })
    .catch(error => {
        console.error(error);
    });