aigroup-econ-mcp 0.3.8__py3-none-any.whl → 0.4.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.
- aigroup_econ_mcp/__init__.py +18 -18
- aigroup_econ_mcp/server.py +284 -3291
- aigroup_econ_mcp/server_v1_backup.py +1250 -0
- aigroup_econ_mcp/server_v1_old.py +1250 -0
- aigroup_econ_mcp/server_with_file_support.py +259 -0
- aigroup_econ_mcp/tools/__init__.py +3 -2
- aigroup_econ_mcp/tools/data_loader.py +171 -0
- aigroup_econ_mcp/tools/decorators.py +178 -0
- aigroup_econ_mcp/tools/file_input_handler.py +268 -0
- aigroup_econ_mcp/tools/file_parser.py +560 -0
- aigroup_econ_mcp/tools/machine_learning.py +14 -14
- aigroup_econ_mcp/tools/panel_data.py +10 -6
- aigroup_econ_mcp/tools/time_series.py +54 -127
- aigroup_econ_mcp/tools/tool_handlers.py +378 -0
- aigroup_econ_mcp/tools/tool_registry.py +170 -0
- {aigroup_econ_mcp-0.3.8.dist-info → aigroup_econ_mcp-0.4.0.dist-info}/METADATA +287 -22
- aigroup_econ_mcp-0.4.0.dist-info/RECORD +30 -0
- aigroup_econ_mcp-0.3.8.dist-info/RECORD +0 -21
- {aigroup_econ_mcp-0.3.8.dist-info → aigroup_econ_mcp-0.4.0.dist-info}/WHEEL +0 -0
- {aigroup_econ_mcp-0.3.8.dist-info → aigroup_econ_mcp-0.4.0.dist-info}/entry_points.txt +0 -0
- {aigroup_econ_mcp-0.3.8.dist-info → aigroup_econ_mcp-0.4.0.dist-info}/licenses/LICENSE +0 -0
aigroup_econ_mcp/__init__.py
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
"""
|
|
2
|
-
AIGroup 计量经济学 MCP 服务
|
|
3
|
-
专业计量经济学MCP工具 - 让大模型直接进行数据分析
|
|
4
|
-
|
|
5
|
-
提供:
|
|
6
|
-
- 描述性统计分析
|
|
7
|
-
- OLS回归分析
|
|
8
|
-
- 时间序列分析
|
|
9
|
-
- 假设检验
|
|
10
|
-
- 模型诊断
|
|
11
|
-
"""
|
|
12
|
-
|
|
13
|
-
__version__ = "0.
|
|
14
|
-
__author__ = "AIGroup"
|
|
15
|
-
__description__ = "专业计量经济学MCP工具 - 让大模型直接进行数据分析"
|
|
16
|
-
|
|
17
|
-
from .server import create_mcp_server
|
|
18
|
-
|
|
1
|
+
"""
|
|
2
|
+
AIGroup 计量经济学 MCP 服务
|
|
3
|
+
专业计量经济学MCP工具 - 让大模型直接进行数据分析
|
|
4
|
+
|
|
5
|
+
提供:
|
|
6
|
+
- 描述性统计分析
|
|
7
|
+
- OLS回归分析
|
|
8
|
+
- 时间序列分析
|
|
9
|
+
- 假设检验
|
|
10
|
+
- 模型诊断
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
__version__ = "0.4.0"
|
|
14
|
+
__author__ = "AIGroup"
|
|
15
|
+
__description__ = "专业计量经济学MCP工具 - 让大模型直接进行数据分析"
|
|
16
|
+
|
|
17
|
+
from .server import create_mcp_server
|
|
18
|
+
|
|
19
19
|
__all__ = ["create_mcp_server", "__version__", "__author__", "__description__"]
|