Tuiml
БесплатноНе проверенTuiML is an agent-native ML runtime that lets you install, connect to your AI agent, and run real ML workflows—classification, regression, clustering, experimen
Описание
TuiML is an agent-native ML runtime that lets you install, connect to your AI agent, and run real ML workflows—classification, regression, clustering, experiments—from one structured interface.
README
Machine Learning for AI Agents.
Ask your agent to train a model, tune it, compare it to the last run, or find an algorithm that fits your data. It just does it. No code. No guesswork. No forgotten context.
Quickstart • Python API • MCP Tools • Benchmarks • Docs
Agents can call it — Every algorithm, dataset, and metric ships with a JSON schema. Agents read the schema, call the tool, get structured results. No hallucinated parameters, no wrapper glue.
Agents can discover it — A queryable registry tagged by task, data shape, and benchmarks. Agents browse and pick instead of memorising class names.
Agents can trust it — Deterministic, typed, reproducible outputs. Every call is a loggable, replayable tool invocation you can audit, diff, and trust in production.
Get running in 3 steps
1. Install — one command, installs uv and tuiml globally:
curl -fsSL https://tuiml.ai/install.sh | bash
Already have Python? pip install tuiml works too.
2. Connect your agent — auto-detects Claude Desktop, Cursor, Claude Code, and more:
tuiml setup
3. Ask your agent — in any connected client:
"Train a random forest on my sales data and report the accuracy."
Your agent discovers algorithms, sets parameters from the schema, trains, evaluates, and returns structured results. No glue code.
Use it from Python
The same runtime agents call is a first-class Python library. Every component — the model, each preprocessing step, the feature selector — is described the same way: a spec of the form {"name": ..., **params}. The data is its own spec, {"source": ..., "target": ...}.
import tuiml
# One call trains, evaluates, and returns metrics.
result = tuiml.train(
{"name": "RandomForestClassifier", "n_estimators": 100}, # model spec
{"source": "sales.csv", "target": "label"}, # data spec
preprocessing=[{"name": "MinMaxScaler"}],
cv=10,
)
print(result.metrics) # {'accuracy_score': 0.97, 'f1_score': 0.96}
preds = result.model.predict(X_new)
Benchmark many algorithms across many datasets with tuiml.experiment(...), and browse the same registry agents use with tuiml.list_algorithms() / tuiml.search_algorithms(...) / tuiml.describe_algorithm(...). See the tutorials for the full tour.
MCP Tools
Everything TuiML can do, your agent can do — the MCP server exposes 200+ typed tools with JSON schemas the agent reads directly.
Train · Tune · Compare — fit a model, sweep hyperparameters, and rank runs in one conversation. No notebook, no glue code.
Algorithm Discovery — the agent searches the catalog by task, data shape, or constraint and gets ranked recommendations with rationale, not a flat list of names.
Persistent Experiments — every run is logged with lineage and metrics, so today's model can be compared against last week's without re-running anything.
One-Call Serving — deploy a trained model to a local HTTP endpoint with a single tool call. Stop it the same way.
100% Local & Private — your data, your machine. No cloud, no API keys, no telemetry.
Key workflow tools: tuiml_train, tuiml_predict, tuiml_evaluate, tuiml_experiment, tuiml_tune, tuiml_plot, tuiml_list, tuiml_describe, tuiml_search.
Works with anything that speaks MCP — tuiml setup auto-detects Claude Desktop, Claude Code, Cursor, ChatGPT Desktop, Codex CLI, Zed, Continue, Windsurf, VS Code Copilot, Perplexity, Goose, and OpenClaw / NemoClaw. For manual setup, add this to your client's MCP config:
{
"mcpServers": {
"tuiml": { "command": "tuiml-mcp" }
}
}
Benchmarks
Average across 3,318 matched runs — 13 algorithms × 51 real-world TabArena datasets, 10-fold cross-validation, same data and folds for every framework:
Weka memory includes its in-process JVM baseline. Full per-algorithm and per-dataset results: tuiml.ai/docs/benchmarks.
Documentation
Full documentation is available at tuiml.ai/docs, including getting started guides, API reference, and tutorials. Want to contribute? Pick something from the Build Board — algorithms, integrations, and good first issues.
License
BSD 3-Clause License. See LICENSE for details.
Citation
@software{tuiml2026,
title={TuiML: Machine Learning that agents can actually call},
author={Verma, Nilesh and Bifet, Albert and Pfahringer, Bernhard and Lim, Nick},
year={2026},
url={https://tuiml.ai}
}
Links
| 🌐 Website | 📚 Documentation | 🔧 API Reference |
| 💻 GitHub | 📦 PyPI | 📝 Changelog |
Built by the TuiML team — tuiml.ai
If TuiML is useful to you, consider leaving a ⭐ — it helps others find the project.
Установка Tuiml
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/tuiml/tuimlFAQ
Tuiml MCP бесплатный?
Да, Tuiml MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Tuiml?
Нет, Tuiml работает без API-ключей и переменных окружения.
Tuiml — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Tuiml в Claude Desktop, Claude Code или Cursor?
Открой Tuiml на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: 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
автор: xuzexin-hzCompare Tuiml with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
