npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

alpha-ventage-mcp

v0.2.1

Published

A Model Context Protocol (MCP) server for Alpha Vantage financial data API

Downloads

59

Readme

Alpha Vantage MCP 服务器 📈

English | 中文

一个模型上下文协议 (MCP) 服务器,提供与 Alpha Vantage 金融数据 API 的无缝集成,支持实时股票市场数据、加密货币价格、外汇汇率和技术指标。

🌟 功能特性

  • 股票市场数据: 实时报价、历史数据、公司信息
  • 加密货币数据: 实时加密货币价格和汇率
  • 外汇交易: 实时外汇汇率和货币转换
  • 技术分析: 高级指标、移动平均线、交易信号

🚀 快速开始

安装

通过 Smithery 安装

通过 Smithery 自动为 Claude Desktop 安装 Alpha Vantage 金融数据服务器:

npx -y @smithery/cli install @deepsuthar496/alpha-ventage-mcp --client claude

手动安装

  1. 克隆仓库:
git clone https://github.com/jeasionr-ui/alpha-ventage-mcp
cd alpha-ventage-mcp
  1. 安装依赖:
npm install
  1. 构建服务器:
npm run build

配置

在您的 MCP 设置文件中配置服务器:

方式一:使用 npx(推荐)

{
  "mcpServers": {
    "alpha-vantage": {
      "command": "npx",
      "args": ["alpha-ventage-mcp"],
      "env": {
        "ALPHA_VANTAGE_API_KEY": "your-api-key-here"
      },
      "disabled": false,
      "alwaysAllow": []
    }
  }
}

方式二:本地安装

# 克隆并本地构建
git clone https://github.com/jeasionr-ui/alpha-ventage-mcp.git
cd alpha-ventage-mcp
npm install
npm run build

然后使用本地路径配置:

{
  "mcpServers": {
    "alpha-vantage": {
      "command": "node",
      "args": ["/path/to/alpha-ventage-mcp/build/index.js"],
      "env": {
        "ALPHA_VANTAGE_API_KEY": "your-api-key-here"
      },
      "disabled": false,
      "alwaysAllow": []
    }
  }
}

🔑 API 密钥

Alpha Vantage 注册获取 API 密钥。免费版包含:

  • 每天 25 次 API 调用
  • 实时和历史数据访问
  • 全球市场覆盖

📝 许可证

MIT