mdl-train-mcp
An MCP server for monitoring and managing training jobs on Modal. Built for LLMs that need to check on long-running GPU training without drowning in log output.
README
mdl-train-mcp
An MCP server for monitoring and managing training jobs on Modal. Built for LLMs that need to check on long-running GPU training without drowning in log output.
Why?
Training logs on Modal can be tens of thousands of lines — weight loading bars, Omniverse init spam, 8 ranks of identical output. Dumping all of that into an LLM context is wasteful and often hits resource limits.
This server gives you browsable logs: start with a summary, then drill into what matters.
| Tool | What it does |
|---|---|
list_apps |
List running, deployed, and recent apps with filtering |
get_logs |
Browse logs with summary/window/grep modes |
stop_app |
Stop a running app |
The get_logs workflow
Instead of returning a giant blob, get_logs has three modes:
1. Summary (default) — returns line count, first/last 10 lines, and any errors with line numbers. Small response, always works.
get_logs(app_id="ap-xxx")
→ {total_lines: 30000, errors: [{line: 847, text: "CUDA error: ..."}], head: [...], tail: [...]}
2. Window — read a specific range. Like scrolling through a file.
get_logs(app_id="ap-xxx", window_start=840, window_size=30)
→ 30 lines around the error
3. Grep — search with regex and context lines. Like grep -C.
get_logs(app_id="ap-xxx", grep="Error|Traceback", grep_context=15)
→ all errors with 15 lines of surrounding context
Landmarks — pass landmark_patterns in summary mode to get a table of contents:
get_logs(app_id="ap-xxx", landmark_patterns=["Iteration \\d+", "success_rate", "checkpoint"])
→ landmarks: [{line: 200, text: "Iteration 1/3000"}, {line: 5000, text: "success_rate: 0.95"}, ...]
Landmark sampling is fair across patterns — one pattern won't dominate.
Features
- Progress bar collapsing — tqdm bars, HF weight loading, and downloads are collapsed to their latest update (50 progress lines → 1 showing current state)
- Auto-retry on resource limits — if Modal's API rejects a large
tail, automatically retries with smaller values and tells you what happened - Error deduplication — 10,000 identical
[Error]lines become a handful of unique entries - Case-sensitive error detection — won't false-positive on metric names like
rot_align_error
Setup
1. Install
# Using uv (recommended)
uv pip install mdl-train-mcp
# Or from source
git clone https://github.com/JoshuaSP/mdl-train-mcp
cd mdl-train-mcp
uv venv && uv pip install -e .
2. Configure Modal
Make sure you have the Modal CLI installed and authenticated:
pip install modal
modal setup
3. Add to Claude Code
Add to your .mcp.json:
{
"mcpServers": {
"mdl": {
"command": "mdl-train-mcp",
"env": {
"MODAL_PROFILE": "your-profile"
}
}
}
}
Or from source:
{
"mcpServers": {
"mdl": {
"command": "uv",
"args": ["--directory", "/path/to/mdl-train-mcp", "run", "mdl-train-mcp"],
"env": {
"MODAL_BIN": "/path/to/modal",
"MODAL_PROFILE": "your-profile"
}
}
}
}
Environment variables
| Variable | Description | Default |
|---|---|---|
MODAL_BIN |
Path to modal CLI binary | modal |
MODAL_PROFILE |
Modal profile to use | (default profile) |
Tools reference
list_apps
list_apps(state?: string, name_contains?: string)
Filter by state ("running", "deployed", "stopped", "ephemeral") or name substring.
get_logs
get_logs(
app_id: string,
tail?: number, # log entries to fetch (default 500, max 5000)
since?: string, # "1h", "30m", "2d", or ISO datetime
until?: string,
source?: string, # "stdout", "stderr", "system"
window_start?: number, # line number for window mode
window_size?: number, # lines to return (default 50, max 200)
grep?: string, # regex search (case-insensitive)
grep_context?: number, # context lines around matches (max 30)
landmark_patterns?: string[] # regex patterns for summary landmarks
)
stop_app
stop_app(app_id: string)
Irreversible — terminates the app and all its containers.
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。