Back to MCP directory
publicPublicdnsLocal runtime

alphavantage

Alpha Vantage的MCP服务器项目,用于股票市场数据API的交互。

article

README

🚀 官方 Alpha Vantage MCP 服务器

这是一个专为股票市场数据 API(Alpha Vantage API)打造的 MCP 服务器,能为你提供便捷的股票市场数据服务。

🚀 快速开始

配置

获取 API 密钥

  1. 前往 免费的 Alpha Vantage API 密钥 页面进行注册,获取 API 密钥。
  2. 将获取到的密钥添加到环境变量中,变量名设置为 ALPHAVANTAGE_API_KEY

克隆项目

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

与 Claude Desktop 的使用方法

将以下内容添加到你的 claude_desktop_config.json 文件中:

⚠️ 重要提示

请确保用实际克隆项目的目录路径替换 <DIRECTORY-OF-CLONED-PROJECT>

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

📦 安装指南

按照上述快速开始中的步骤进行操作,即可完成项目的配置和安装。

📺 演示视频

观看 Alpha Vantage MCP 服务器快速演示:

Alpha Vantage MCP 服务器演示

🤝 贡献

我们欢迎社区的贡献!若想了解如何开始贡献,请查看我们的 CONTRIBUTING.md 指南,其中包含设置说明、开发提示和准则。

项目状态徽章

smithery badge

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client