Loading...
Loading...
Unified query of financial data such as stocks and cryptocurrencies. Supports multiple data sources including Yahoo Finance, Alpha Vantage, Tushare, and Binance. Used when users need market data, quotes, and financial data.
npx skill4agent add louloulin/claude-agent-sdk mcp-data-gateway| Data Source | Type | Coverage |
|---|---|---|
| Yahoo Finance | Stocks, ETFs, Indices | Global Markets |
| Alpha Vantage | Stocks, Forex, Cryptocurrencies | US Stocks Focus |
| Tushare | A-shares, Hong Kong Stocks, Chinese Concept Stocks | Chinese Markets |
| Binance | Cryptocurrencies | Major Coins |
// Get quote
let quote = gateway.get_quote("AAPL").await?;
// Get fundamental data
let fundamental = gateway.get_fundamental("AAPL").await?;
// Get historical K-lines
let history = gateway.get_history("AAPL", Period::Daily, 1).await?;