Workflow Guides

Practical patterns for production usage of SindByte MCP Server.

1. Coding Assistant Workflow

DataTools
FileTools
MathTools
IQTools

Use full registration mode and keep execution local by default.

  1. Enable only needed categories in registration filter.
  2. Use `IQTools::Validate` before writing code back to file.
  3. Use `DataTools::ApplyDiff` or `FileTools::WriteFile` with confirmation level.

2. Scheduled IQ Workflow

TimerTools
IQTools
LM-Studio
OpenAI

Use the IQTools/Timer dialog to schedule recurring reasoning or summaries.

3. Desktop Automation Workflow

CUTools
Locate + Screenshot
Mouse + Keyboard

Target windows first, then drive interaction deterministically.

  1. `CUTools::LocateAppWindow` (and optionally `LocateChildWindow`).
  2. `CUTools::Screenshot` for verification context.
  3. `CUTools::MouseClick` and `CUTools::SimKeyPress` with safe pacing.

4. Image Generation Workflow

OpenAI
CUTools::GenerateImage
CUTools::PictureEdit
PictureResize
PictureConvert

Enable `OpenAIImageToolEnabled` and set `OpenAIImageModel` in config/editor.

CUTools::GenerateImage(prompt, model, size, target="file|memory|clipboard|both") -> optional CUTools::PictureEdit(source, prompt, ...) -> optional format conversion -> optional resize

Operational Safeguards