by zwldarren
MCP server that provides access to Chinese stock market data using akshare-one
# Add to your Claude Code skills
git clone https://github.com/zwldarren/akshare-one-mcpAn MCP server based on akshare-one, providing comprehensive interfaces for China stock market data. It offers a set of powerful tools for retrieving financial information including historical stock data, real-time data, news data, and financial statements.
<a href="https://glama.ai/mcp/servers/@zwldarren/akshare-one-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@zwldarren/akshare-one-mcp/badge" alt="akshare-one-mcp MCP server" /> </a>get_hist_dataGet historical stock market data with support for multiple time periods and adjustment methods.
<details> <summary>Parameters</summary>symbol (string, required): Stock code (e.g. '000001')interval (string, optional): Time interval ('minute','hour','day','week','month','year') (default: 'day')interval_multiplier (number, optional): Interval multiplier (default: 1)start_date (string, optional): Start date in YYYY-MM-DD format (default: '1970-01-01')end_date (string, optional): End date in YYYY-MM-DD format (default: '2030-12-31')adjust (string, optional): Adjustment type ('none', 'qfq', 'hfq') (default: 'none')source (string, optional): Data source ('eastmoney', 'eastmoney_direct', 'sina') (default: 'eastmoney')indicators_list (list, optional): Technical indicators to addrecent_n (number, optional): Number of most recent records to return (default: 100)get_realtime_dataGet real-time stock market data.
symbol (string, optional): Stock codesource (string, optional): Data source ('xueqiu', 'eastmoney', 'eastmoney_direct') (default: 'eastmoney_direct')get_news_dataGet stock-related news data.
symbol (string, required): Stock coderecent_n (number, optional): Number of most recent records to return (default: 10)get_balance_sheetGet company balance sheet data.
symbol (string, required): Stock coderecent_n (number, optional): Number of most recent records to return (default: 10)get_income_statementGet company income statement data.
symbol (string, required): Stock coderecent_n (number, optional): Number of most recent records to return (default: 10)get_cash_flowGet company cash flow statement data.
symbol (string, re...