The Scikit-learn Model Context Protocol (MCP) Server provides a standardized interface for interacting with Scikit-learn models and datasets. This server simplifies the process of training, evaluating, and managing Scikit-learn models, making it easier to integrate machine learning workflows into your applications.
To run this project locally, follow these steps:
Clone the repository:
shell
git clone https://github.com/yourusername/mcp-server-scikit-learn.git
cd mcp-server-scikit-learn
Launch the MCP inspector via npm:
shell
npx @modelcontextprotocol/inspector uv --directory=src/mcp_server_scikit_learn run mcp-server-scikit-learn
Access the URL displayed in your browser to begin debugging.
Alternatively, you can add this tool as an MCP server by including the following configuration in your settings:
{
"scikit-learn": {
"command": "uv",
"args": [
"--directory",
"/path/to/mcp-server-scikit-learn",
"run",
"mcp-server-scikit-learn"
]
}
}
Create and activate a virtual environment:
shell
python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
Install dependencies:
shell
pip install -e ".[dev]"
Run tests:
shell
pytest -s -v tests/
This project is licensed under the MIT License. See the LICENSE file for more details.
No description, website, or topics provided.
No releases published.
No packages published.