mcp-automl 0.1.1__py3-none-any.whl → 0.1.3__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.
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mcp-automl
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: MCP server for end-to-end machine learning
5
5
  Author-email: ke <idea7766@gmail.com>
6
6
  License-File: LICENSE
7
- Requires-Python: >=3.11
7
+ Requires-Python: <3.12,>=3.10
8
8
  Requires-Dist: duckdb>=1.4.3
9
9
  Requires-Dist: joblib<1.4
10
10
  Requires-Dist: mcp>=1.21.2
@@ -39,12 +39,26 @@ Add to your MCP client configuration (e.g., Claude Desktop, Gemini CLI, Cursor,
39
39
  "mcpServers": {
40
40
  "mcp-automl": {
41
41
  "command": "uvx",
42
- "args": ["--from", "git+https://github.com/idea7766/mcp-automl", "mcp-automl"]
42
+ "args": ["--python", "3.11", "mcp-automl"]
43
43
  }
44
44
  }
45
45
  }
46
46
  ```
47
47
 
48
+ **Or using Docker:**
49
+
50
+ ```json
51
+ {
52
+ "mcpServers": {
53
+ "mcp-automl": {
54
+ "command": "docker",
55
+ "args": ["run", "-i", "--rm", "-v", "${PWD}:/workspace", "-v", "${HOME}/.mcp-automl:/root/.mcp-automl", "idea7766/mcp-automl:latest"]
56
+ }
57
+ }
58
+ }
59
+ ```
60
+
61
+
48
62
  ### Available Tools
49
63
 
50
64
  | Tool | Description |
@@ -67,16 +81,18 @@ MCP AutoML includes an **data science workflow skill** that guides AI agents thr
67
81
 
68
82
  ### Installing the Skill
69
83
 
70
- Copy the skill directory to your agent's skill folder:
84
+ **For Gemini CLI:**
71
85
 
72
86
  ```bash
73
- # For Gemini Code Assist
74
- cp -r skill/data-science-workflow ~/.gemini/skills/
87
+ gemini skills install https://github.com/idea7766/mcp-automl --path skill/data-science-workflow
88
+ ```
75
89
 
76
- # For Claude Code
77
- cp -r skill/data-science-workflow ~/.claude/skills/
90
+ **For Claude Code:**
78
91
 
79
- # For other agents, copy to their respective skill directories
92
+ ```bash
93
+ # Clone the repo and copy the skill
94
+ git clone https://github.com/idea7766/mcp-automl.git
95
+ cp -r mcp-automl/skill/data-science-workflow ~/.claude/skills/
80
96
  ```
81
97
 
82
98
  The skill file is located at `skill/data-science-workflow/SKILL.md`.
@@ -84,6 +100,17 @@ The skill file is located at `skill/data-science-workflow/SKILL.md`.
84
100
  ## Configuration
85
101
 
86
102
  Models and experiments are saved to `~/.mcp-automl/experiments/` by default.
103
+ ## Troubleshooting
104
+
105
+ ### macOS: LightGBM OpenMP Error
106
+
107
+ If you encounter an error like `Library not loaded: @rpath/libomp.dylib`, you need to install OpenMP:
108
+
109
+ ```bash
110
+ brew install libomp
111
+ ```
112
+
113
+ This is a system-level dependency required by LightGBM on macOS. Linux and Windows users typically don't need this step.
87
114
 
88
115
  ## Dependencies
89
116
 
@@ -1,8 +1,8 @@
1
1
  mcp_automl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  mcp_automl/__main__.py,sha256=ncTRY5zgcNOS7JcLnCVhPd9KsxjyREC245P2eo33BuI,74
3
3
  mcp_automl/server.py,sha256=rk8mQFSm-Y-p5-6DqvPkdiUN6WQrC7jXGXTb4Byedgw,42435
4
- mcp_automl-0.1.1.dist-info/METADATA,sha256=UKa51AqkUr0J14f3-emm1GqXYHHHhF8HtQ2wa1Gi-gM,3066
5
- mcp_automl-0.1.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
6
- mcp_automl-0.1.1.dist-info/entry_points.txt,sha256=7QuAE_HatGpFE7Ul7hqNHmpaMf0Ug86aFkaCXofjhLg,54
7
- mcp_automl-0.1.1.dist-info/licenses/LICENSE,sha256=MLSjoBTdoZnIBt__JNue8D2KnKqNg7Mt_LYWn9vNNws,1065
8
- mcp_automl-0.1.1.dist-info/RECORD,,
4
+ mcp_automl-0.1.3.dist-info/METADATA,sha256=8ijC0ds1x0633RNb3yAtRVBTGXfVBxNhQQsX5v2qUWA,3638
5
+ mcp_automl-0.1.3.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
6
+ mcp_automl-0.1.3.dist-info/entry_points.txt,sha256=7QuAE_HatGpFE7Ul7hqNHmpaMf0Ug86aFkaCXofjhLg,54
7
+ mcp_automl-0.1.3.dist-info/licenses/LICENSE,sha256=MLSjoBTdoZnIBt__JNue8D2KnKqNg7Mt_LYWn9vNNws,1065
8
+ mcp_automl-0.1.3.dist-info/RECORD,,