Mle Kit
FreeNot checkedProvides ML engineering tools including local/remote bash, text editor, file search, remote GPU helpers via vast.ai, and an OpenRouter LLM proxy.
About
Provides ML engineering tools including local/remote bash, text editor, file search, remote GPU helpers via vast.ai, and an OpenRouter LLM proxy.
README
MCP server providing practical tools for ML engineering workflows, including local/remote bash, a text editor, file search, remote GPU helpers (via vast.ai), and an OpenRouter LLM proxy.
Features
- bash: Run commands in an isolated Docker container mounted to your
WORKSPACE_DIR. - text_editor: View and edit files and directories in your workspace with undo support.
- glob / grep: Fast filename globbing and ripgrep-based content search.
- remote_bash / remote_text_editor / remote_download: Execute and edit on a remote GPU machine and sync files to/from it.
- llm_proxy_local / llm_proxy_remote: Launch an OpenAI-compatible proxy backed by OpenRouter locally (in the bash container) or on the remote GPU.
Requirements
- Python 3.12+
- Docker daemon available (for
bashtool) - ripgrep (
rg) installed on the host (forgreptool) WORKSPACE_DIRshould be set with a path to working directory- Optional (for remote GPU tools): a
VAST_AI_KEYwith billing set up on vast.ai - Optional (for LLM proxy tools): an
OPENROUTER_API_KEY
Install
Using uv (recommended):
uv sync
Or standard pip install:
python -m venv .venv && . .venv/bin/activate
pip install -e .
Run the MCP server
Set a workspace directory and start the server. The MCP endpoint is served at /mcp.
WORKSPACE_DIR=/absolute/path/to/workdir uv run python -m mle_kit_mcp --port 5057
Defaults:
PORTdefaults to5057if--portis not providedmount_path=/andstreamable_http_path=/mcp
Claude Desktop config
{
"mcpServers": {
"mle_kit": {
"command": "python3",
"args": [
"-m",
"mle_kit_mcp",
"--transport",
"stdio"
]
}
}
}
Tools overview
- bash(command, cwd=None, timeout=60): Runs inside a
python:3.12-slimcontainer with your workspace bind-mounted at/workdir. State persists between calls. Timeouts return a helpful message. - text_editor(command, path, ...): Supports
view,write,append,insert,str_replace(with optionaldry_run), andundo_edit. Only relative paths under the workspace are allowed. - glob(pattern, path=None): Returns matching files under the workspace (optionally under
path), sorted by modification time. - grep(pattern, path=None, glob=None, output_mode=..., ...): ripgrep wrapper. Install
rgon the host to enable. Output modes:files_with_matches,content,count. - remote_bash(command, timeout=60): Runs commands on a remote vast.ai instance. Manages lifecycle unless you supply an existing instance (see env vars below).
- remote_download(file_path): Copies a file from the remote (
/root/<file_path>) to your workspace. - remote_text_editor(...): Same API as
text_editor, but syncs the file(s) before and after edits to the remote. - llm_proxy_local() / llm_proxy_remote(): Starts a small FastAPI OpenAI-compatible server backed by OpenRouter, returning a JSON string with
urlandscope.
Configuration (env vars)
All variables can be placed in a local .env file or exported in your shell.
WORKSPACE_DIR(required): Absolute path to your workspace directory.PORT(optional): Default server port (defaults to5057).
Remote GPU (vast.ai):
GPU_TYPE(default:RTX_3090)DISK_SPACE(GB, default:300)EXISTING_INSTANCE_ID(optional): Use an existing vast.ai instance instead of creating a new one.EXISTING_SSH_KEY(optional): Path to an SSH private key to use with the existing instance.VAST_AI_KEY(optional but required to launch new instances)
OpenRouter proxy:
OPENROUTER_API_KEY(optional but required for proxy tools)OPENROUTER_BASE_URL(default:https://openrouter.ai/api/v1)
Notes:
- The remote GPU helper will generate an SSH key at
~/.ssh/id_rsaif one is missing, and attach it to the instance. - Creating/destroying instances may incur cost; be mindful of environment defaults.
Development
Run tests:
make test
Lint / type-check / format:
make validate
Docker
You can also build and run via the provided Dockerfile:
docker build -t mle_kit_mcp .
docker run --rm -p 5057:5057 \
-e PORT=5057 \
-e WORKSPACE_DIR=/workspace \
-v "$PWD/workdir:/workspace" \
mle_kit_mcp
Installing Mle Kit
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/IlyaGusev/mle_kit_mcpFAQ
Is Mle Kit MCP free?
Yes, Mle Kit MCP is free — one-click install via Unyly at no cost.
Does Mle Kit need an API key?
No, Mle Kit runs without API keys or environment variables.
Is Mle Kit hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Mle Kit in Claude Desktop, Claude Code or Cursor?
Open Mle Kit on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
by lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
mkinf
An Open Source registry of hosted MCP Servers to accelerate AI agent workflows.
Compare Mle Kit with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
