a-stock-data-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@a-stock-data-mcpanalyze stock 600519"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
a-stock-data-mcp
MCP Server adapter for simonlin1212/a-stock-data.
The upstream project is kept as a pinned Git submodule under vendor/a-stock-data.
This project does not rewrite upstream A-share data-fetching logic; it exposes that logic through
FastMCP tools, prompts, and resources.
Install
git submodule update --init --recursive
uv sync
cp .env.example .envRelated MCP server: eastmoney-skills2mcp
Run
uv run python -m mcp_server.serverThe server uses stdio. SSE and Streamable HTTP are intentionally left as future entrypoints.
Claude Desktop
{
"mcpServers": {
"a-stock-data": {
"command": "uv",
"args": [
"--directory",
"/path/to/a-stock-data-mcp",
"run",
"python",
"-m",
"mcp_server.server"
]
}
}
}Cursor
Add the same command to Cursor MCP settings:
{
"mcpServers": {
"a-stock-data": {
"command": "uv",
"args": ["--directory", "/path/to/a-stock-data-mcp", "run", "python", "-m", "mcp_server.server"]
}
}
}VS Code
{
"servers": {
"a-stock-data": {
"type": "stdio",
"command": "uv",
"args": ["--directory", "/path/to/a-stock-data-mcp", "run", "python", "-m", "mcp_server.server"]
}
}
}Cherry Studio
Use a stdio MCP server:
Command:
uvArgs:
--directory /path/to/a-stock-data-mcp run python -m mcp_server.server
Tools
Stock:
search_stock,get_stock_quote,get_stock_basic,get_stock_news,get_stock_notice,get_stock_reportK-line:
get_daily_kline,get_weekly_kline,get_monthly_kline,get_minute_klineFinance:
get_finance,get_income_statement,get_balance_sheet,get_cashflow,get_eps,get_roe,get_pe,get_pbSector:
get_industry,get_concept,get_industry_members,get_concept_membersHot:
get_hot_rank,get_limit_up_pool,get_limit_down_pool,get_broken_limit,get_hot_conceptsDragon tiger:
get_dragon_tigerMoney:
get_money_flow,get_main_force,get_north_moneyETF:
get_etf,get_etf_componentsIndex:
get_index_quote,get_index_klineNotice and research:
get_notice,get_research_reportAnalysis:
analyze_stock,analyze_market
All tools return:
{"success": true, "data": {}}or:
{"success": false, "error": "...", "message": "..."}Prompts
analyze_stockdaily_market_summaryanalyze_sectortoday_hot_stock
Resources
market://calendarmarket://industrymarket://conceptmarket://indexmarket://exchangemarket://etf
Configuration
.env supports:
LOG_LEVELREQUEST_TIMEOUTENABLE_CACHECACHE_TTL_QUOTECACHE_TTL_NEWSCACHE_TTL_FINANCECACHE_TTL_SECTORUSER_AGENT
Development
uv run pytest
uv run ruff check .
uv run black --check .
uv run mypy .Notes
a-stock-data currently publishes a Markdown Skill rather than a Python package. The adapter extracts
allowlisted Python definitions from SKILL.md and ignores examples/top-level calls.
mootdx is not installed by default because current mcp and mootdx releases have incompatible
httpx dependency pins. Quote/news/finance/sector tools run without it; K-line tools are registered
and fail with a clear dependency message until upstream publishes a compatible dependency set.
Some requested MCP tools, such as ETF components or board member lists, have no exact upstream helper today. They are registered and return structured status instead of adding new scrapers outside the adapter boundary.
This server cannot be deployed
Maintenance
Related MCP Connectors
MCP server giving AI agents one-connection access to China A-share market intelligence: financials,
China A-share market data for research, backtesting and AI agents via MCP.
Read-only China A-share data for AI agents: market, limit-up, capital flow and disclosures.
A Model Context Protocol server exposing real-time and historical Colombo Stock Exchange (CSE) data to AI agents and LLM applications. Provides quotes and OHLCV price history, full financial statements (income, balance sheet, cash flow), pre-computed technicals (moving averages, RS ratings, volume signals), macroeconomic indicators, corporate actions, and rule-based screening across CSE stocks and sector indices, everything needed to build CSE-aware trading assistants, research tools, and market-analysis agents. This is the official MCP server of www.ceyloncharts.com
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceMCP server that wraps SFC financial data API into 32 tools for comprehensive A-share market data, including real-time quotes, rankings, limit-up statistics, news, themes, financials, charts, research reports, and watchlists.-
- AlicenseNot gradedqualityDmaintenanceProvides 11 MCP tools for querying A-share market data, financial reports, stock screening, hot topics, self-selected stocks, and LOF arbitrage using natural language, powered by East Money / Miaoxiang APIs.MIT
- AlicenseBqualityCmaintenanceMCP server that wraps AKShare's 1000+ financial data functions, enabling LLMs to query Chinese stock, macro, futures, fund, bond, option, forex, and alternative data through standardized tools.143Apache 2.0
- FlicenseAqualityBmaintenanceEnables natural language analysis, screening, reporting, and comparison of A-share stocks via MCP tools or REST API, with pluggable data (mock/akshare) and LLM providers.41-