mcp-automl 0.1.2__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.
- {mcp_automl-0.1.2.dist-info → mcp_automl-0.1.3.dist-info}/METADATA +35 -8
- {mcp_automl-0.1.2.dist-info → mcp_automl-0.1.3.dist-info}/RECORD +5 -5
- {mcp_automl-0.1.2.dist-info → mcp_automl-0.1.3.dist-info}/WHEEL +0 -0
- {mcp_automl-0.1.2.dist-info → mcp_automl-0.1.3.dist-info}/entry_points.txt +0 -0
- {mcp_automl-0.1.2.dist-info → mcp_automl-0.1.3.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-automl
|
|
3
|
-
Version: 0.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
|
|
@@ -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": ["--
|
|
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
|
-
|
|
84
|
+
**For Gemini CLI:**
|
|
71
85
|
|
|
72
86
|
```bash
|
|
73
|
-
|
|
74
|
-
|
|
87
|
+
gemini skills install https://github.com/idea7766/mcp-automl --path skill/data-science-workflow
|
|
88
|
+
```
|
|
75
89
|
|
|
76
|
-
|
|
77
|
-
cp -r skill/data-science-workflow ~/.claude/skills/
|
|
90
|
+
**For Claude Code:**
|
|
78
91
|
|
|
79
|
-
|
|
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.
|
|
5
|
-
mcp_automl-0.1.
|
|
6
|
-
mcp_automl-0.1.
|
|
7
|
-
mcp_automl-0.1.
|
|
8
|
-
mcp_automl-0.1.
|
|
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,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|