aigroup-econ-mcp 0.1.5__tar.gz → 0.1.6__tar.gz

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.

Potentially problematic release.


This version of aigroup-econ-mcp might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aigroup-econ-mcp
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: 专业计量经济学MCP工具 - 让大模型直接进行数据分析
5
5
  Project-URL: Homepage, https://github.com/aigroup/aigroup-econ-mcp
6
6
  Project-URL: Repository, https://github.com/aigroup/aigroup-econ-mcp.git
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "aigroup-econ-mcp"
7
- version = "0.1.5"
7
+ version = "0.1.6"
8
8
  description = "专业计量经济学MCP工具 - 让大模型直接进行数据分析"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -10,7 +10,7 @@ AIGroup 计量经济学 MCP 服务
10
10
  - 模型诊断
11
11
  """
12
12
 
13
- __version__ = "0.1.5"
13
+ __version__ = "0.1.6"
14
14
  __author__ = "AIGroup"
15
15
  __description__ = "专业计量经济学MCP工具 - 让大模型直接进行数据分析"
16
16
 
@@ -167,7 +167,7 @@ async def descriptive_statistics(
167
167
  - 建议样本量 >= 30 以获得可靠的统计推断"""
168
168
  )
169
169
  ]
170
- ) -> Annotated[CallToolResult, DescriptiveStatsResult]:
170
+ ) -> CallToolResult:
171
171
  """计算描述性统计量
172
172
 
173
173
  📊 功能说明:
@@ -305,7 +305,7 @@ async def ols_regression(
305
305
  - 建议使用有意义的名称以便解释结果"""
306
306
  )
307
307
  ] = None
308
- ) -> Annotated[CallToolResult, OLSRegressionResult]:
308
+ ) -> CallToolResult:
309
309
  """执行普通最小二乘法(OLS)回归分析
310
310
 
311
311
  📊 功能说明:
@@ -475,7 +475,7 @@ async def hypothesis_testing(
475
475
  - 检验时间序列平稳性 → 使用 adf"""
476
476
  )
477
477
  ] = "t_test"
478
- ) -> Annotated[CallToolResult, HypothesisTestResult]:
478
+ ) -> CallToolResult:
479
479
  """执行统计假设检验
480
480
 
481
481
  📊 功能说明:
@@ -602,7 +602,7 @@ async def time_series_analysis(
602
602
  - 日均气温数据"""
603
603
  )
604
604
  ]
605
- ) -> Annotated[CallToolResult, TimeSeriesStatsResult]:
605
+ ) -> CallToolResult:
606
606
  """时间序列统计分析
607
607
 
608
608
  📊 功能说明:
@@ -779,7 +779,7 @@ async def correlation_analysis(
779
779
  - 有序分类数据 → kendall"""
780
780
  )
781
781
  ] = "pearson"
782
- ) -> Annotated[CallToolResult, TextContent]:
782
+ ) -> CallToolResult:
783
783
  """变量间相关性分析
784
784
 
785
785
  📊 功能说明: