Skip to content

Automation Workflow

Mixstart 3.0 has a powerful built-in automation workflow system, equipped with a brand-new server-side execution engine for more stable and efficient performance. Without any programming foundation, you can build complex automation tasks by dragging nodes and connecting lines. This article will guide you step-by-step to create a workflow from scratch.

Quick Start: Create Your First Workflow in 5 Minutes

Step 1: Open the Workflow Editor

  1. On the Mixstart main interface, click the "Workflow" icon in the left menu bar.
  2. Click the "New Workflow" button in the top-right corner.
  3. Name your workflow (e.g., "Daily News Push").

Step 2: Add a Trigger

Every workflow must have a trigger, which determines when the workflow starts running.

  1. In the left node panel, click the "Trigger" category.
  2. Drag "Manual Trigger" to the center of the canvas.
  3. This is your starting point!

Step 3: Add a Tool Node

  1. Drag a functional node you need from the left panel (e.g., "HTTP Request").
  2. Drag the connection point on the right of the trigger node to the connection point on the left of the new node.
  3. The two nodes are now connected!

Step 4: Configure the Node

  1. Click any node; the configuration panel will appear on the right.
  2. Fill in the necessary parameters according to the prompts.
  3. Parameters will be saved automatically.

Step 5: Run Test

  1. Click the "▶ Run" button in the top toolbar.
  2. The workflow will start from the trigger and execute each node in sequence.
  3. After execution, you can view the running results of each node.

Core Concepts

Node

A node is an individual operation step in a workflow. For example, the "HTTP Request" node is responsible for calling an API, and the "AI Chat" node handles text processing.

Edge

An edge (connection line) determines the flow direction of data. Data flows along the line from the upstream node to the downstream node.

Variable System

The workflow supports a powerful variable reference function:

  • Use the <code v-pre>&#123;&#123;NodeID.Property&#125;&#125;</code> syntax to reference the output of an upstream node.
  • The Variable Panel on the right side of the editor shows all available variables; click to insert.

Automatic Data Transfer

Important: Most nodes will automatically use the output of the upstream node as input. For example:

  • The "AI Chat" node automatically uses upstream data as the user message.
  • The "Create Excel" node automatically extracts a table from upstream data.
  • The "Desktop Notification" node automatically displays the upstream result.

You don't need to manually configure these transfers; the system handles them intelligently!


Run Mode

Mixstart 3.0 supports two run modes, flexibly adapting to different scenarios:

🖥️ Client-side Execution

  • Dependency: Requires the computer to be turned on and the Mixstart client to be running.
  • Capabilities: Can use all nodes, especially those involving local system operations (e.g., opening apps, manipulating files).
  • Scenarios: Desktop automation, local file processing.

☁️ Cloud-side Execution

  • Dependency: No need for the computer to be on; executed by the server 24/7.
  • Capabilities: Supports only server-available nodes (e.g., AI Chat, HTTP Request, Message Push, Database, etc.). Does not support nodes that operate on the local system.
  • Scenarios: Scheduled news pushes, WeChat message forwarding, background data processing.
  • How to enable: Turn on the "Cloud Mode" switch in the top-right corner of the workflow editor.

Node Details

Below are all the node types supported by Mixstart workflows.


⚡ Trigger

A trigger is the entry point of a workflow, determining when it starts execution. Each workflow must have one and only one trigger.

Manual Trigger

Function: Requires manually clicking the "Run" button to execute. Suitable for testing or one-time tasks.

Configuration: No configuration required.

Output Variables:

NameDescription
outputDefault output content
dataCarried initial data (e.g., passed from an AI call)

Scheduled Trigger Pro

Function: Runs automatically according to a set time schedule, requiring no manual operation.

Configuration:

OptionDescriptionExample
Execution TimeCron Expression0 9 * * * (e.g., every day at 9 AM)

Common Cron Expressions:

ExpressionMeaning
0 9 * * *9:00 AM every day
0 9 * * 19:00 AM every Monday
0 */2 * * *Every 2 hours
*/30 * * * *Every 30 minutes
0 9,18 * * *9:00 AM and 6:00 PM every day

Note

If the workflow contains client-specific nodes (e.g., opening apps, system controls, etc.), the Mixstart client must keep running in the background.

If the workflow contains only cloud-available nodes (e.g., AI, HTTP, messaging) and has Cloud Mode enabled, it will execute automatically as scheduled even if the computer is off.


Webhook Trigger Pro

Function: Allows external systems (e.g., website feedback, GitHub, custom services) to trigger your workflow by sending a network request.

Configuration:

OptionExplanationExample
Webhook PathA unique English code for this workflow (starts with /)/feedback or /order-notify
Request MethodHow to trigger it; POST is generally recommendedPOST
Security SecretA lock for the interface to prevent unauthorized triggers (optional)my-secret-key
Response ModeHow long the external system waits forImmediate Response (Recommended)

💡 Tip for Beginners

You only need to fill in the path suffix! For example, fill in /feedback, and the system will automatically generate the full URL: https://workflow.mnuk.cn/webhook/feedback

After configuration, simply copy the Full URL displayed on the panel for your external system.

Output Variables (downstream nodes can directly use this data):

NameDescription
bodyThe specific content sent by the caller (JSON data)
queryParameters appended to the URL (e.g., ?id=1)
headersRequest header information

Calling Example:

bash
# Example of sending data to your workflow
curl -X POST https://workflow.mnuk.cn/webhook/feedback \
  -H "Content-Type: application/json" \
  -d '{"title": "Test Feedback", "content": "This is a test"}'

🖥️ System & App

Control local applications and system functions.

Open App Client-side

Function: Launch a locally installed application.

Configuration:

OptionDescriptionExample
Name/PathProgram name or full pathnotepad or C:\Program Files\...

Common Supported App Names: chrome, vscode, notepad, calculator, explorer, cmd


Open URL Client-side

Function: Open a specified link using the default browser.

Configuration:

OptionDescriptionExample
Web URLFull URLhttps://www.google.com

Function: Use Google or Baidu to search for specified content.

Configuration:

OptionDescriptionExample
Search QueryKeywords to searchReact Tutorial

Output Variables:

NameDescription
results.0.titleTitle of the first result
results.0.urlLink of the first result
results.0.snippetSnippet of the first result

Vision Agent New Client-side

Function: Invokes the AI Vision Agent to autonomously operate the system or software through visual analysis.

Configuration:

KeyDescriptionExample
TaskSpecific mission for the Agent to completeOpen Notepad and type a message
Max StepsMaximum loop limit for the agent (1-80)50

Note

This node is asynchronous. The workflow engine will start the Agent and proceed to the next node immediately, while the Agent continues to run in the background.


System Control Pro Client-side

Function: Execute system-level power operations.

Configuration:

OptionDescription
OperationDropdown: Lock Screen, Sleep, Shut Down, Restart

Available Operations:

  • Lock Screen: Lock the computer immediately
  • Sleep: Enter sleep mode
  • Shut Down: Shut down the computer immediately
  • Restart: Restart the computer

System Command Pro Client-side

Function: Execute CMD or PowerShell commands.

Configuration:

OptionDescriptionExample
CommandShell scriptdir /b or python script.py

Output Variables:

NameDescription
stdoutStandard output of the command
stderrError output

Tips

  • Supports multi-line commands, one per line.
  • Can call scripts like Python, Node.js, etc.
  • Output content will be passed to downstream nodes.

Desktop Notification Pro Client-side

Function: Pop up a notification reminder in the system's bottom-right corner.

Configuration:

OptionDescriptionExample
TitleHead of the notificationTask Completed
ContentMain text (auto-uses upstream result if empty)Data Synced

Clipboard Pro Client-side

Function: Read from or write to the system clipboard.

Configuration:

OptionDescription
OperationDropdown: Read Clipboard / Write Clipboard
  • Read: Get the current text in the clipboard.
  • Write: Copy upstream data to the clipboard.

💬 Messaging Pro

Integrate mainstream instant messaging and notification channels.

DingTalk

Function: Send messages to group chats via DingTalk Custom Bot.

Configuration:

OptionDescriptionExample
Webhook URLGroup bot's Webhook URLhttps://oapi.dingtalk.com/robot/send?access_token=...
Secret KeySignature secret in security settings (optional)SEC...
Msg TypeText / Markdown / Link Card / ActionCardtext
ContentMessage text (auto-uses upstream data if empty)
TitleRequired for Markdown/Card messages
@PhoneMember phone numbers to mention, comma-separated13800138000,13900139000
@All MembersWhether to mention everyoneNo

Feishu Message

Function: Send messages via Feishu/Lark bot.

Configuration:

OptionDescription
Webhook URLFeishu bot's Webhook URL
Secret KeyOptional
Msg TypeText / Rich Text / Card Message
ContentMessage text
TitleTitle for Card messages

WeCom

Function: Send messages via WeChat Work group bot.

Configuration:

OptionDescription
Webhook URLWeCom bot's Key URL
Msg TypeText / Markdown / Image-Text
ContentMessage text
@MemberWeCom ID, comma-separated; @all for everyone

WeChat MP

Function: Send image-text or template messages via Service Account.

Configuration:

OptionDescription
AppIDOfficial account developer credentials
AppSecretOfficial account secret
TitleTitle of the image-text message (Required)
ContentSupports inserting images ![desc](link)
Cover ImageURL or upload local image (900×500 recommended)
Origin LinkLink for "Read Original Article"
AuthorOptional
Send ModeBroadcast to fans / Send Preview / Draft Only / Publish Article
Preview IDRequired for Preview mode (WeChat ID)
User TagFiltering by tags in Broadcast mode

Output Variables:

NameDescription
media_idMaterial ID after upload
article_urlPermanent link of the article
msg_idID of the broadcasted message

Send Email

Function: Send emails via SMTP protocol.

Configuration:

OptionDescriptionExample
SMTP ServerEmail provider addresssmtp.gmail.com
PortUsually 587 or 465587
UsernameSender emailyour@email.com
Password/CodeEmail app authorization code
RecipientTarget emailrecipient@email.com
SubjectEmail titleWorkflow Notification

Email body will automatically use the output of the upstream node.


Telegram

Function: Send messages via Telegram Bot.

Configuration:

OptionDescriptionExample
Bot TokenObtained from @BotFather123456:ABC-DEF...
Chat IDTarget user or group ID123456789
ContentAuto-uses upstream data if empty

Slack

Function: Send messages to Slack channels or manage channels.

Configuration:

OptionDescriptionExample
ResourceMessage / Channel / Usermessage
OperationPost Message / Get Info ...post
TokenSlack Bot User OAuth Tokenxoxb-...
Channel IDTarget Channel IDC12345678
ContentMessage textHello from Mixstart

Discord

Function: Send messages to Discord channels via Webhook.

Configuration:

OptionDescriptionExample
Webhook URLChannel Webhook URLhttps://discord.com/api/webhooks/...
ContentMessage contentHello Discord!
UsernameUsername displayed for the senderMixstart Bot
Avatar URLAvatar image URL for the sender

Personal WeChat Beta Client-side

Function: Send messages via the currently logged-in PC WeChat.

Configuration:

OptionDescriptionExample
NicknameReceiver's nickname (Full name recommended)File Transfer / John Doe
Msg TypeMessage TypeText / File / Image / Audio
ContentText message contentHello
AttachmentAbsolute path or URL of file/imageC:\photo.jpg

Note

  • Requires Mixstart Client to be running.
  • Requires PC WeChat to be logged in.
  • Do not send spam; it may lead to account risks.

☁️ Cloud Services Pro

Alibaba Cloud OSS

Function: Manage files in Alibaba Cloud Object Storage Service.

Configuration:

OptionDescriptionExample
AccessKey IDAlibaba Cloud Key ID
AccessKey SecretAlibaba Cloud Key Secret
Bucket NameBucket namemy-bucket
RegionSwitch: East China 1 (Hangzhou)/Shanghai/Beijing/HK...oss-cn-hangzhou
OperationUpload / Download / Delete / List filesupload
Local PathLocal path for upload/downloadC:\Files\upload.jpg
Remote PathObject Key on OSSimages/2024/photo.jpg

AWS S3

Function: Manage AWS S3 Object Storage files.

Configuration:

OptionDescriptionExample
ResourceFile / Bucketfile
OperationUpload / Download / Delete / Panelupload
RegionAWS Regionus-east-1
BucketBucket Namemy-bucket
Access Key IDAccess Key IDAKIA...
Secret Access KeySecret Access Key

Tencent Cloud COS

Function: Manage Tencent Cloud Object Storage files.

Configuration:

OptionDescriptionExample
OperationUpload / Download / Delete / Panelupload
Local PathLocal path for uploadC:\file.txt
Object KeyPath on COSfolder/file.txt
SecretIdTencent Cloud API SecretIdAKID...
SecretKeyTencent Cloud API SecretKey
BucketBucket Namemy-bucket-1250000000
RegionBucket Regionap-guangzhou

Qiniu Cloud Kodo

Function: Manage Qiniu Cloud Object Storage.

Configuration:

OptionDescriptionExample
OperationUpload / Delete / List / Infoupload
Access KeyQiniu AK
Secret KeyQiniu SK
BucketBucket Namemy-bucket
DomainLimit Domain for download/accesscdn.example.com

Google Drive

Function: Manage Google Drive files.

Configuration:

OptionDescriptionExample
ResourceFile / Folderfile
OperationUpload / Download / Delete / List / Createupload
Access TokenGoogle OAuth2 Tokenya29....
FilenameName for upload/createbackup.zip
Folder IDParent Folder ID (Optional)
Local ContentContent for upload (Text)

🗄️ Database Pro

Connect directly to databases for CRUD operations.

MySQL

Function: Execute SQL statements.

Configuration:

OptionDescriptionExample
HostDatabase addresslocalhost or IP
PortDefault 33063306
UsernameDatabase userroot
PasswordDatabase password
DatabaseDatabase namemy_database
SQL StatementSQL to executeSELECT * FROM users WHERE status = 'active'

Security Note

Use ? placeholders to prevent SQL injection; parameters are passed via the params field (JSON array).


MongoDB

Function: NoSQL database operations.

Configuration:

OptionDescriptionExample
Connection StringMongoDB URImongodb://localhost:27017
DatabaseDatabase namemy_database
CollectionCollection nameusers
Operationfind/findOne/insert/update/delete/aggregate/countfind
Query FilterJSON format{"status":"active"}
Doc/UpdateJSON format{"$set":{"name":"New Name"}}

Redis

Function: Key-value cache operations.

Configuration:

OptionDescriptionExample
HostRedis addresslocalhost
PortDefault 63796379
PasswordOptional
DatabaseDefault 00
OperationGET/SET/DEL/HGET/HSET/LPUSH/RPUSH/LRANGE/KEYS/INCR/DECRget
KeyCache key namecache:user:123
ValueRequired for SET operation
Expire TimeSeconds, optional3600

📄 Office

Automate Office file processing.

Read File Pro Client-side

Function: Read content from a local text file.

Configuration:

OptionDescriptionExample
File PathAbsolute pathC:\Documents\data.txt

Output Variables:

NameDescription
contentFile content
pathFile path

Write File Pro Client-side

Function: Write data to a local file.

Configuration:

OptionDescriptionExample
Save PathTarget file pathC:\Documents\output.md

Note: File content automatically uses upstream node output; no manual config needed.


Create Excel Pro Client-side

Function: Generate .xlsx spreadsheet files.

Configuration:

OptionDescriptionExample
FilenameName of the generated fileSales Report
Sheet NameName of the worksheetSheet1

Note: Spreadsheet data is extracted automatically from upstream nodes. Upstream data should be in array format:

json
[
  { "name": "John", "age": 25, "city": "NYC" },
  { "name": "Doe", "age": 30, "city": "LA" }
]

Create Word Pro Client-side

Function: Generate .docx documents.

Configuration:

OptionDescriptionExample
FilenameName of the generated fileProject Report
Doc TitleDocument main title2024 Annual Summary

Note: Document content automatically uses upstream text output.


Create PPT Pro Client-side

Function: Generate .pptx presentations.

Configuration:

OptionDescriptionPossible Values
FilenameName of the generated fileProject Debrief
Pres TitleCover title2024 Work Report
Theme StylePreset theme selectionMinimalist Gold / Warm Orange / Forest Green / Pure White

Note: Slide content automatically uses structured data generated by upstream AI nodes.


Create Markdown Pro Client-side

Function: Generate .md Markdown documents.

Configuration:

OptionDescriptionExample
FilenameName of the generated fileCHANGELOG.md
ContentDocument content (Markdown format)# Title\n\nContent...

Google Sheets

Function: Read and write Google Sheets.

Configuration:

OptionDescriptionPossible Values
OperationAppend Row / Update Row / Get All ValuesappendRow
Spreadsheet IDSpreadsheet IDID from URL
RangeCell RangeSheet1!A1
ValuesData to write (JSON Array)[["Name", "Age"], ["John", 30]]

Notion

Function: Operate Notion databases and pages.

Configuration:

OptionDescriptionExample
ResourceDatabase Page / Database / UserdatabasePage
OperationCreate Page / Get Page / Query Databasecreate
Database IDDatabase IDGet from URL
TitleTitle for new pageNew Task

🧮 Logic & Data

Process and clean circulating data, or control loop logic.

Loop

Function: Execute a logic block repeatedly.

Configuration:

OptionDescriptionPossible Values
Loop TypeIterate Array / Fixed TimesforEach / times
Loop CountUsed in Fixed Times mode10

JSON Processing

Function: Handle JSON format data.

Configuration:

OptionDescriptionExample
OperationParse / Stringify / Extract Field / Get All Keysparse
Field PathFor Extract modedata.items[0].name

CSV Processing

Function: Parse CSV spreadsheet text.

Configuration:

OptionDescriptionPossible Values
DelimiterColumn separatorComma / Semicolon / Tab
Header RowUse first row as field namesYes / No

HTML Extraction Pro

Function: Extract information from webpage HTML.

Configuration:

OptionDescriptionExample
Ext ModeCSS Selector / All Text / All Links / All Images / Tables / Meta Infoselector
CSS SelectorFor selector mode.article h1, #content p
Attr NameExtract text if empty, or href, src, etc.href

Data Filter

Function: Similar to Excel's filter feature.

Configuration:

OptionDescriptionExample
Filter KeyField name to judgestatus
Operatorcontains/equals/notEquals/gt/lt/isEmpty/notEmptyequals
Compare ValValue to compare againstactive

Data Sort

Function: Sort array data.

Configuration:

OptionDescriptionPossible Values
Sort KeyField name to sort bycreatedAt
DirectionAscending (A→Z) / Descending (Z→A)asc

Count Limit

Function: Intercept the first N items or skip the first N items of an array.

Configuration:

OptionDescriptionExample
Limit CountMax number to return10
Skip CountOffset to start from0

Data Aggregate

Function: Statistical calculations.

Configuration:

OptionDescriptionPossible Values
Agg MethodCalculation typeSum / Average / Max / Min / Count
Calc KeyNumeric field to calculateprice

Data Split

Function: Disassemble array data.

Configuration:

OptionDescriptionPossible Values
Split ModeWay to splitBy Batch / Item-by-item / By Field Group
Batch SizeHow many per batch10

Data Merge

Function: Merge multiple data sources.

Configuration:

OptionDescriptionPossible Values
Merge ModeWay to mergeConcatenate / Object Merge / Index Pair / Key Relation

Remove Duplicates

Function: Remove duplicate items from an array.

Configuration:

OptionDescription
Unique KeyField to judge duplicates (compare whole object if empty)
Keep StrategyKeep First / Keep Last

Switch (Conditional Branch)

Function: Route the flow to different branches based on field values.

Configuration:

OptionDescriptionExample
Judge KeyField name for judgmentstatus

Matches different branches by field value; falls back to default if no match.


Set Variable

Function: Define a new temporary variable.

Configuration:

OptionDescriptionExample
Variable NameCustom variable namemyVar
Variable ValAuto-uses upstream if empty

Hash Processing

Function: Generate hash values or perform encoding/decoding.

Configuration:

OptionDescriptionPossible Values
AlgorithmProcessing typeMD5 / SHA-256 / SHA-512 / Base64 Enc / Base64 Dec / UUID
Input TextAuto-uses upstream if empty

🌐 Network

HTTP Request

Function: General HTTP client for calling any API.

Configuration:

OptionDescriptionExample
Target URLAPI URLhttps://api.example.com/data
MethodHTTP VerbGET / POST

Output Variables:

NameDescription
dataResponse body (autodetects JSON)
statusHTTP status code
headersResponse headers

RSS Feed Reader Pro

Function: Parse RSS/Atom feeds.

Configuration:

OptionDescriptionExample
Feed URLRSS feed linkhttps://example.com/rss
Fetch CountMax number to pull20

Output Variables:

NameDescription
data.0.titleLatest article title
data.0.descriptionArticle summary
data.0.linkOriginal link
data.0.imageUrlCover image URL
data.0.pubDatePublishing time
data.0.authorAuthor
countTotal articles fetched

🤖 Artificial Intelligence Pro

LLM Chat (AI Chat)

Function: Dialogue with large language models to process data.

Configuration:

OptionDescriptionExample
AI TaskSystem prompt telling AI its role/taskYou are a professional secretary, summarize these...
ModelUse default if empty, or specify modelgpt-4o / deepseek-chat

Optional Models:

  • GPT-4o / GPT-4o-mini (OpenAI)
  • DeepSeek Chat
  • Claude 3.5 Sonnet
  • Gemini Pro

Output Variables:

NameDescription
textAI's reply content
outputSame as text
usage.total_tokensToken consumption

Tips

Upstream data is automatically sent to the AI as a user message; no manual input setup is required. E.g., RSS → AI: RSS content is auto-processed by AI.


:::

AI Vision

Function: Let AI "see" images, supporting image description, text extraction, or Q&A about the image.

Configuration:

OptionDescriptionExample
Image URLRequired, URL of the imagehttps://example.com/image.jpg
PromptWhat you want to ask AIWhat's in this image? / Extract text
ModelVision Modelgpt-4-vision-preview / claude-3-opus
Base URLOptional, custom API addresshttps://api.openai.com/v1
API KeyOptional, custom API key

AI Image Gen

Function: Generate images from text descriptions.

Configuration:

OptionDescriptionPossible Values
ModelImage Modeldall-e-3 / midjourney / cogview-3
PromptDescription of the sceneA cat walking in space, cyberpunk style
SizeImage resolution1024x1024 / 1024x1792
QualityImage qualityStandard / HD
CountNumber of images1

AI Text-to-Speech (TTS)

Function: Convert text into realistic speech.

Configuration:

OptionDescriptionPossible Values
ModelTTS Modeltts-1 / tts-1-hd
VoicePreset Voicealloy / echo / fable / onyx / nova / shimmer
Input TextText to speak
SpeedPlayback speed (0.25 - 4.0)1.0

Wusound / Vocu (Wusound)

Function: High-expressive AI speech synthesis with emotion support.

Configuration:

OptionDescriptionExample
ServiceService Providerwusound / vocu
API KeyPlatform API Key (Required)
TextText to synthesize
Voice IDSelect or input voice IDClick refresh to load list
StyleVoice style (Prompt)default or custom style
LanguageGeneration languageAuto / Chinese / English / Japanese / ...
PresetStability presetBalance / Creative / Stable
SpeedSpeed (0.5 - 2.0)1.0
VividEnhanced Emotion (Vivid)On / Off

Execute Code

Function: Run custom JavaScript or Python code.

Configuration:

OptionDescriptionPossible Values
LanguageProgramming languageJavaScript / Python
CodeYour code logic

JavaScript Code Example:

javascript
// Upstream data is accessed via the 'input' variable
const data = input;

// Process data
const result = data.map(item => ({
  name: item.title,
  url: item.link
}));

// Return processed data
return result;

Global Objects Available: input (upstream data), console, JSON, Math, Date, fetch (for requests), setTimeout, Promise, etc.


🛠️ Utility

Delay

Function: Pause workflow execution for a period.

Configuration:

OptionDescriptionExample
Delay DurationSupports s, m, h5s / 2m / 1h

DateTime

Function: Get current time or perform date calculations.

Configuration:

OptionDescriptionPossible Values
OperationProcessing typeCurrent Time / Format Date / Add-Subtract / Diff
Output FormatDate format templateYYYY-MM-DD HH:mm:ss

QR Code Generator Pro

Function: Convert text into a QR code image.

Configuration:

OptionDescriptionExample
ContentText to encode (auto-uses upstream if empty)https://example.com
SizeImage size (pixels)200
FormatBase64 / PNG File / SVG Codebase64

Translator

Function: Multi-language machine translation.

Configuration:

OptionDescriptionPossible Values
ProviderTranslation EngineGoogle / DeepL / Baidu
Target LangTarget Languagezh / en / ja / ko ...
ContentText to translate

💻 Development & Collaboration (Development)

GitHub

Function: Manage GitHub repositories, Issues, and Releases.

Configuration:

OptionDescriptionExample
ResourceRepository / Issue / Releaserepository
OperationGet Info / List / Createget
OwnerUsername or Organizationmixstart
RepositoryRepository Namecore
TokenGitHub Personal Access Tokenghp_...

Trello

Function: Manage Trello board tasks.

Configuration:

OptionDescription
ResourceCard / Board / List
OperationCreate / Get / Update
API KeyTrello API Key
API TokenTrello API Token
IDCard or List ID

System Variables

Workflows have built-in system variables usable in any text box:

VariableDescriptionExample Value
<code v-pre>&#123;&#123;Desktop&#125;&#125;</code>Desktop pathC:\Users\xxx\Desktop
<code v-pre>&#123;&#123;Documents&#125;&#125;</code>Documents pathC:\Users\xxx\Documents
<code v-pre>&#123;&#123;Date&#125;&#125;</code>Current date2024-01-15
<code v-pre>&#123;&#123;DateTime&#125;&#125;</code>Current date & time2024/1/15 14:30:00

Pro Features

Some advanced nodes require a Pro license:

  • Scheduled / Webhook Trigger
  • 🤖 AI Chat / Execute Code
  • 📄 File I/O / Create Excel/Word/PPT
  • 💬 Messaging (DingTalk, Feishu, WeCom, WeChat MP, Email)
  • ☁️ Cloud Services (Alibaba Cloud OSS / AWS S3 / Tencent COS / Qiniu / Google Drive)
  • 🗄️ Database (MySQL, MongoDB, Redis, Notion, Google Sheets)
  • 🌐 RSS Feed / HTML Scraping / QR Code
  • 🔧 Development (GitHub / Trello)
  • 🔄 Logic Control (Loop / Script Execution)

The free version provides Manual Trigger + HTTP Request + Data Processing foundational nodes.


FAQ

Q: Scheduled task didn't execute?

A: Ensure the Mixstart client is running in the background. Tasks stop if the client is closed.

Q: How to debug a workflow?

A: After clicking "Run", you can view the execution status and output of each node in the result panel. Error-prone nodes show a red marker and error info.

Q: How is data passed between nodes?

A: Data passes automatically along connections. Most nodes use upstream data by default, or you can use <code v-pre>&#123;&#123;NodeID.Property&#125;&#125;</code> for precise referencing.

Q: How to get a specific field from an API response?

A: Use the "JSON Processing" node, set operation to "Extract Field", and fill in the path like data.items[0].name.