Windows-only headless LLM task automation engine with scheduling via Windows Task Scheduler.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
A Windows-only headless LLM task automation engine that executes natural language tasks on schedule and delivers results through configured channels. Built as a Model Context Protocol (MCP) server with the official MCP C# SDK.
serve) for task management, headless CLI (exec) for scheduled executioncreate_task, update_task, delete_task, list_tasks, run_task, get_task_history, get_execution_statusschtasks entriesAllowedTools null = all tools permitted; explicit list for fine-grained control; empty list = safe tools onlyschedule_once with ISO 8601 datetime for single-execution tasks (βin 5 minutesβ, βtomorrow at 9amβ)After installation, the assiststudio-runner command is available globally.
The published package is Windows-only because scheduling is implemented via Windows Task Scheduler and credentials are stored in Windows Credential Manager.
When launched in serve mode with no runner.json, Runner automatically scans Windows Credential Manager for known provider API keys and generates the config file. If you use AssistStudio, API keys are already stored β no manual setup needed.
The config file is created at %LOCALAPPDATA%/FieldCure/AssistStudio/Runner/runner.json:
Add to claude_desktop_config.json:
Add to .vscode/mcp.json:
| Tool | Description | Confirmation |
|---|---|---|
create_task | Create a task with prompt, schedule, and MCP server config | Required |
update_task | Modify task fields β partial update, only changed fields | Required |
delete_task | Delete a task, its executions, and log files | Required |
list_tasks | List tasks with filtering and last execution status | β |
run_task | Start execution (async default, optional 60s wait) | Required |
get_task_history | Query execution history with status filtering | β |
get_execution_status | Check real-time status of an execution | β |
| Mode | Command | Purpose |
|---|---|---|
| Serve | assiststudio-runner serve | MCP server (stdio) for task management |
| Exec | assiststudio-runner exec <task-id> | Headless execution (called by schtasks) |
| Config | assiststudio-runner config init | Create config template |
assiststudio-runner config set-credential <key> <value> | Store API key or env var | |
assiststudio-runner config get-credential <key> | Retrieve credential (masked) |
| Code | Meaning |
|---|---|
0 | Succeeded |
1 | Failed |
2 | Timed out |
3 | Task not found |
4 | Already running |
Cron expressions are automatically mapped to Windows Task Scheduler entries:
| Schedule | Parameter | schtasks |
|---|---|---|
| Once at specific time | schedule_once: "2026-04-07T15:30:00+09:00" | /SC ONCE /SD 2026/04/07 /ST 15:30 |
| Every 30 minutes | schedule: "*/30 * * * *" | /SC MINUTE /MO 30 |
| Every 2 hours | schedule: "0 */2 * * *" | /SC HOURLY /MO 2 |
| Daily at 9:00 AM | schedule: "0 9 * * *" | /SC DAILY /ST 09:00 |
| Weekdays at 9:00 AM | schedule: "0 9 * * 1-5" | /SC WEEKLY /D MON,TUE,WED,THU,FRI /ST 09:00 |
| Monthly on the 1st | schedule: "0 9 1 * *" | /SC MONTHLY /D 1 /ST 09:00 |
Scheduled tasks are created with schtasks /IT, so they run in the interactive
user context and require the user to be logged in at trigger time.
The schtasks command line uses dnx (NuGet's npx-equivalent, .NET 10+) to
fetch and run the worker β dnx FieldCure.AssistStudio.Runner@<major>.* --yes exec <id>.
Stateless MCP servers consumed by the worker (Essentials, Outbox) are spawned
the same way, pinned at their current major range. Set RunnerConfig.ToolPath
to override with a concrete executable when an offline-from-NuGet workflow is
required.
| Data | Location |
|---|---|
| Configuration | %LOCALAPPDATA%/FieldCure/AssistStudio/Runner/runner.json |
| Task database | %LOCALAPPDATA%/FieldCure/AssistStudio/Runner/runner.db (SQLite, WAL) |
| Execution logs | %LOCALAPPDATA%/FieldCure/AssistStudio/Runner/logs/{id}.json |
| API keys | Windows Credential Manager (FieldCure.AssistStudio) |
Runner is purpose-built for the AssistStudio ecosystem. Tasks are typically created through natural language conversations in AssistStudio, which handles workflow design, MCP server selection, and tool permissions automatically.
While Runner can be used standalone with Claude Desktop or VS Code (via serve mode), you'll need to construct task parameters (prompt, MCP servers, allowed tools) manually. For the full experience, use AssistStudio.
Part of the AssistStudio ecosystem.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/assiststudio-runner)<a href="https://allmcps.com/mcp/assiststudio-runner"><img src="https://allmcps.com/api/badge/assiststudio-runner?style=directory" alt="Assiststudio Runner on AllMCPs" /></a>