FieldCure.AssistStudio.Runner
2.0.1
See the version list below for details.
{ "servers": { "FieldCure.AssistStudio.Runner": { "type": "stdio", "command": "dnx", "args": ["FieldCure.AssistStudio.Runner@2.0.1", "--yes"] } } }
.vscode/mcp.json settings file.
dotnet tool install --global FieldCure.AssistStudio.Runner --version 2.0.1
dotnet new tool-manifest
dotnet tool install --local FieldCure.AssistStudio.Runner --version 2.0.1
#tool dotnet:?package=FieldCure.AssistStudio.Runner&version=2.0.1
nuke :add-package FieldCure.AssistStudio.Runner --version 2.0.1
FieldCure.AssistStudio.Runner
Windows-only headless LLM task automation engine — define natural language tasks, schedule them via Windows Task Scheduler (recurring or one-time), and get results delivered through Slack, Telegram, Email, KakaoTalk, or Discord. Runs as an MCP server for task management or standalone for headless execution.
Install
dotnet tool install -g FieldCure.AssistStudio.Runner
The published package is Windows-only because scheduling is implemented via Windows Task Scheduler and credentials are stored in Windows Credential Manager.
Quick Start
# Create runner.json config template
assiststudio-runner config init
# Set API key
assiststudio-runner config set-credential "Claude Sonnet" sk-ant-api03-...
# Start MCP server
assiststudio-runner serve
Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"runner": {
"command": "assiststudio-runner",
"args": ["serve"]
}
}
}
Tools (7)
| Tool | Description | Confirmation |
|---|---|---|
create_task |
Create a task with prompt, schedule, and MCP servers | Required |
update_task |
Modify task fields (partial update) | Required |
delete_task |
Delete a task and its history | Required |
list_tasks |
List all tasks with last execution status | — |
run_task |
Start task execution (async or wait up to 60s) | Required |
get_task_history |
Query execution history for a task | — |
get_execution_status |
Check status of a running execution | — |
Execution Modes
| Mode | Command | Purpose |
|---|---|---|
| Serve | assiststudio-runner serve |
MCP server for task CRUD + execution |
| Exec | assiststudio-runner exec <task-id> |
Headless single-task execution |
| Config | assiststudio-runner config <cmd> |
Credential and configuration management |
Requirements
- .NET 8.0 Runtime or later
- Windows (required for Task Scheduler and Credential Manager)
- FieldCure.Ai.Providers (bundled)
- FieldCure.Ai.Execution (bundled)
Scheduled tasks are registered with Windows Task Scheduler in interactive mode, so the user must be logged in when the trigger fires.
Designed for 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.
See Also
Part of the AssistStudio ecosystem.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
This package has no dependencies.
| Version | Downloads | Last Updated |
|---|---|---|
| 2.0.3 | 104 | 5/4/2026 |
| 2.0.2 | 91 | 5/4/2026 |
| 2.0.1 | 87 | 5/4/2026 |
| 2.0.0 | 90 | 5/4/2026 |
| 1.4.0 | 107 | 4/22/2026 |
| 1.3.0 | 109 | 4/21/2026 |
| 1.2.0 | 108 | 4/14/2026 |
| 1.1.4 | 104 | 4/8/2026 |
| 1.1.3 | 99 | 4/7/2026 |
| 1.1.2 | 86 | 4/7/2026 |
| 1.1.1 | 91 | 4/7/2026 |
| 1.1.0 | 93 | 4/7/2026 |
| 1.0.0 | 96 | 4/7/2026 |
| 0.5.0 | 114 | 4/3/2026 |
| 0.4.0 | 124 | 4/2/2026 |
| 0.3.0 | 103 | 3/31/2026 |
| 0.2.0 | 110 | 3/30/2026 |
| 0.1.0 | 112 | 3/30/2026 |
v2.0.1: Completes the dnx migration on the Runner side. Drops the preference for tool-path-installed binaries under the retired %LOCALAPPDATA%\FieldCure\AssistStudio\tools\ folder (which AssistStudio stopped populating in mid-April), eliminating silent version-skew failures when stale binaries shadowed the dnx-cached current versions. WindowsTaskScheduler now spawns dnx directly for schtasks-fired exec workers. RunnerConfig.DetectInstalledServers uses dnx-based discovery; each stateless server (essentials, outbox) is pinned at its current major range so breaking changes never sneak in mid-cycle. RunnerConfig.Load auto-migrates pre-2.0.1 runner.json — any defaultMcpServers[].command pointing into the legacy tools/ folder is rewritten to the equivalent dnx command and saved back.