aigroup-econ-mcp 0.1.6__tar.gz → 0.2.1__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.

Files changed (23) hide show
  1. {aigroup_econ_mcp-0.1.6 → aigroup_econ_mcp-0.2.1}/PKG-INFO +5 -1
  2. {aigroup_econ_mcp-0.1.6 → aigroup_econ_mcp-0.2.1}/pyproject.toml +70 -66
  3. aigroup_econ_mcp-0.2.1/src/aigroup_econ_mcp/config.py +561 -0
  4. aigroup_econ_mcp-0.2.1/src/aigroup_econ_mcp/server.py +3344 -0
  5. aigroup_econ_mcp-0.2.1/src/aigroup_econ_mcp/tools/__init__.py +17 -0
  6. aigroup_econ_mcp-0.2.1/src/aigroup_econ_mcp/tools/base.py +271 -0
  7. aigroup_econ_mcp-0.2.1/src/aigroup_econ_mcp/tools/cache.py +533 -0
  8. aigroup_econ_mcp-0.2.1/src/aigroup_econ_mcp/tools/machine_learning.py +673 -0
  9. aigroup_econ_mcp-0.2.1/src/aigroup_econ_mcp/tools/monitoring.py +555 -0
  10. aigroup_econ_mcp-0.2.1/src/aigroup_econ_mcp/tools/optimized_example.py +229 -0
  11. aigroup_econ_mcp-0.2.1/src/aigroup_econ_mcp/tools/panel_data.py +527 -0
  12. aigroup_econ_mcp-0.2.1/src/aigroup_econ_mcp/tools/time_series.py +838 -0
  13. aigroup_econ_mcp-0.2.1/src/aigroup_econ_mcp/tools/validation.py +482 -0
  14. aigroup_econ_mcp-0.1.6/src/aigroup_econ_mcp/server.py +0 -856
  15. aigroup_econ_mcp-0.1.6/src/aigroup_econ_mcp/tools/__init__.py +0 -7
  16. aigroup_econ_mcp-0.1.6/src/aigroup_econ_mcp/tools/time_series.py +0 -260
  17. {aigroup_econ_mcp-0.1.6 → aigroup_econ_mcp-0.2.1}/.gitignore +0 -0
  18. {aigroup_econ_mcp-0.1.6 → aigroup_econ_mcp-0.2.1}/LICENSE +0 -0
  19. {aigroup_econ_mcp-0.1.6 → aigroup_econ_mcp-0.2.1}/README.md +0 -0
  20. {aigroup_econ_mcp-0.1.6 → aigroup_econ_mcp-0.2.1}/src/aigroup_econ_mcp/__init__.py +0 -0
  21. {aigroup_econ_mcp-0.1.6 → aigroup_econ_mcp-0.2.1}/src/aigroup_econ_mcp/cli.py +0 -0
  22. {aigroup_econ_mcp-0.1.6 → aigroup_econ_mcp-0.2.1}/src/aigroup_econ_mcp/tools/regression.py +0 -0
  23. {aigroup_econ_mcp-0.1.6 → aigroup_econ_mcp-0.2.1}/src/aigroup_econ_mcp/tools/statistics.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aigroup-econ-mcp
3
- Version: 0.1.6
3
+ Version: 0.2.1
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
@@ -21,11 +21,15 @@ Classifier: Topic :: Scientific/Engineering :: Information Analysis
21
21
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
22
22
  Requires-Python: >=3.10
23
23
  Requires-Dist: click>=8.0.0
24
+ Requires-Dist: linearmodels>=7.0
24
25
  Requires-Dist: matplotlib>=3.5.0
25
26
  Requires-Dist: mcp>=1.0.0
26
27
  Requires-Dist: numpy>=1.21.0
27
28
  Requires-Dist: pandas>=1.5.0
29
+ Requires-Dist: psutil>=5.9.0
28
30
  Requires-Dist: pydantic>=2.0.0
31
+ Requires-Dist: pyyaml>=6.0
32
+ Requires-Dist: scikit-learn>=1.0.0
29
33
  Requires-Dist: scipy>=1.7.0
30
34
  Requires-Dist: statsmodels>=0.13.0
31
35
  Requires-Dist: uvicorn>=0.20.0
@@ -1,66 +1,70 @@
1
- [build-system]
2
- requires = ["hatchling"]
3
- build-backend = "hatchling.build"
4
-
5
- [project]
6
- name = "aigroup-econ-mcp"
7
- version = "0.1.6"
8
- description = "专业计量经济学MCP工具 - 让大模型直接进行数据分析"
9
- readme = "README.md"
10
- requires-python = ">=3.10"
11
- authors = [
12
- {name = "AIGroup", email = "jackdark425@gmail.com"}
13
- ]
14
- dependencies = [
15
- "pandas>=1.5.0",
16
- "numpy>=1.21.0",
17
- "statsmodels>=0.13.0",
18
- "scipy>=1.7.0",
19
- "matplotlib>=3.5.0",
20
- "mcp>=1.0.0",
21
- "pydantic>=2.0.0",
22
- "uvicorn>=0.20.0",
23
- "click>=8.0.0"
24
- ]
25
- keywords = ["mcp", "economics", "statistics", "regression", "data-analysis"]
26
- classifiers = [
27
- "Development Status :: 4 - Beta",
28
- "Intended Audience :: Developers",
29
- "License :: OSI Approved :: MIT License",
30
- "Programming Language :: Python :: 3",
31
- "Programming Language :: Python :: 3.8",
32
- "Programming Language :: Python :: 3.9",
33
- "Programming Language :: Python :: 3.10",
34
- "Programming Language :: Python :: 3.11",
35
- "Programming Language :: Python :: 3.12",
36
- "Topic :: Scientific/Engineering :: Information Analysis",
37
- "Topic :: Software Development :: Libraries :: Python Modules"
38
- ]
39
-
40
- [project.scripts]
41
- aigroup-econ-mcp = "aigroup_econ_mcp.cli:cli"
42
-
43
- [project.urls]
44
- Homepage = "https://github.com/aigroup/aigroup-econ-mcp"
45
- Repository = "https://github.com/aigroup/aigroup-econ-mcp.git"
46
- Issues = "https://github.com/aigroup/aigroup-econ-mcp/issues"
47
-
48
- [tool.hatch.build.targets.wheel]
49
- packages = ["src/aigroup_econ_mcp"]
50
-
51
- [tool.hatch.build.targets.sdist]
52
- include = [
53
- "/src",
54
- "/README.md",
55
- "/LICENSE",
56
- ]
57
-
58
- [tool.uv]
59
- dev-dependencies = [
60
- "pytest>=7.0.0",
61
- "pytest-asyncio>=0.21.0",
62
- "black>=23.0.0",
63
- "isort>=5.12.0",
64
- "mypy>=1.0.0",
65
- "ruff>=0.1.0"
66
- ]
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "aigroup-econ-mcp"
7
+ version = "0.2.1"
8
+ description = "专业计量经济学MCP工具 - 让大模型直接进行数据分析"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ authors = [
12
+ {name = "AIGroup", email = "jackdark425@gmail.com"}
13
+ ]
14
+ dependencies = [
15
+ "pandas>=1.5.0",
16
+ "numpy>=1.21.0",
17
+ "statsmodels>=0.13.0",
18
+ "scipy>=1.7.0",
19
+ "matplotlib>=3.5.0",
20
+ "mcp>=1.0.0",
21
+ "pydantic>=2.0.0",
22
+ "uvicorn>=0.20.0",
23
+ "click>=8.0.0",
24
+ "linearmodels>=7.0",
25
+ "scikit-learn>=1.0.0",
26
+ "psutil>=5.9.0",
27
+ "PyYAML>=6.0",
28
+ ]
29
+ keywords = ["mcp", "economics", "statistics", "regression", "data-analysis"]
30
+ classifiers = [
31
+ "Development Status :: 4 - Beta",
32
+ "Intended Audience :: Developers",
33
+ "License :: OSI Approved :: MIT License",
34
+ "Programming Language :: Python :: 3",
35
+ "Programming Language :: Python :: 3.8",
36
+ "Programming Language :: Python :: 3.9",
37
+ "Programming Language :: Python :: 3.10",
38
+ "Programming Language :: Python :: 3.11",
39
+ "Programming Language :: Python :: 3.12",
40
+ "Topic :: Scientific/Engineering :: Information Analysis",
41
+ "Topic :: Software Development :: Libraries :: Python Modules"
42
+ ]
43
+
44
+ [project.scripts]
45
+ aigroup-econ-mcp = "aigroup_econ_mcp.cli:cli"
46
+
47
+ [project.urls]
48
+ Homepage = "https://github.com/aigroup/aigroup-econ-mcp"
49
+ Repository = "https://github.com/aigroup/aigroup-econ-mcp.git"
50
+ Issues = "https://github.com/aigroup/aigroup-econ-mcp/issues"
51
+
52
+ [tool.hatch.build.targets.wheel]
53
+ packages = ["src/aigroup_econ_mcp"]
54
+
55
+ [tool.hatch.build.targets.sdist]
56
+ include = [
57
+ "/src",
58
+ "/README.md",
59
+ "/LICENSE",
60
+ ]
61
+
62
+ [tool.uv]
63
+ dev-dependencies = [
64
+ "pytest>=7.0.0",
65
+ "pytest-asyncio>=0.21.0",
66
+ "black>=23.0.0",
67
+ "isort>=5.12.0",
68
+ "mypy>=1.0.0",
69
+ "ruff>=0.1.0"
70
+ ]