ghdata-mcp 2.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
ghdata_mcp/__init__.py
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
"""
|
|
3
|
+
股海罗盘 GH-Data MCP Server
|
|
4
|
+
A股全维度数据引擎 — 16个工具覆盖财务/行情/解禁/增减持/研报/调研/持仓/分红/资金流向/两融/高管变动/K线
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__version__ = "1.0.0"
|
|
8
|
+
__author__ = "gh-data"
|
|
9
|
+
__description__ = "A股个股深度分析 MCP 数据引擎"
|
|
10
|
+
|
|
11
|
+
from .server import mcp
|
|
12
|
+
|
|
13
|
+
# 导出工具函数
|
|
14
|
+
from .server import (
|
|
15
|
+
query_financial_report,
|
|
16
|
+
query_balance_sheet,
|
|
17
|
+
query_cashflow_statement,
|
|
18
|
+
query_income_statement,
|
|
19
|
+
query_realtime_price,
|
|
20
|
+
get_stock_unlock_data,
|
|
21
|
+
get_stock_unlock_holders,
|
|
22
|
+
query_shareholder_trade,
|
|
23
|
+
query_research_report,
|
|
24
|
+
query_institutional_survey,
|
|
25
|
+
query_main_holdings,
|
|
26
|
+
query_dividend_history,
|
|
27
|
+
query_money_flow,
|
|
28
|
+
query_margin_trading,
|
|
29
|
+
query_executive_hold_change,
|
|
30
|
+
generate_kline_chart,
|
|
31
|
+
)
|