by fiveohhwon
Automate complex multi-step processes like code reviews with powerful workflow automation software for data processing a
Executes complex multi-step workflows with branching logic, state management, and cognitive actions for LLMs. Provides structured, reusable processes instead of ad-hoc task execution.
Workflows is a community-built MCP server published by fiveohhwon that provides AI assistants with tools and capabilities via the Model Context Protocol. Automate complex multi-step processes like code reviews with powerful workflow automation software for data processing a It is categorized under productivity, developer tools.
You can install Workflows in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Workflows is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Strong directory entry: Workflows surfaces stars and publisher context so we could sanity-check maintenance before adopting.
I recommend Workflows for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
Workflows reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
We evaluated Workflows against two servers with overlapping tools; this profile had the clearer scope statement.
Useful MCP listing: Workflows is the kind of server we cite when onboarding engineers to host + tool permissions.
Useful MCP listing: Workflows is the kind of server we cite when onboarding engineers to host + tool permissions.
We evaluated Workflows against two servers with overlapping tools; this profile had the clearer scope statement.
Workflows is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
Workflows reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
We evaluated Workflows against two servers with overlapping tools; this profile had the clearer scope statement.
showing 1-10 of 56
🤖 Co-authored with Claude Code - Building workflows so LLMs can finally follow a recipe without burning the kitchen! 🔥
A powerful Model Context Protocol (MCP) implementation that enables LLMs to execute complex, multi-step workflows with cognitive actions and tool integrations.
workflows-mcp transforms how AI assistants handle complex tasks by providing structured, reusable workflows that combine tool usage with cognitive reasoning. Instead of ad-hoc task execution, workflows provide deterministic, reproducible paths through multi-step processes.
npx @fiveohhwon/workflows-mcp
npm install -g @fiveohhwon/workflows-mcp
git clone https://github.com/FiveOhhWon/workflows-mcp.git
cd workflows-mcp
npm install
npm run build
Add this configuration to your Claude Desktop config file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"workflows": {
"command": "npx",
"args": ["-y", "@fiveohhwon/workflows-mcp"]
}
}
}
{
"mcpServers": {
"workflows": {
"command": "workflows-mcp"
}
}
}
{
"mcpServers": {
"workflows": {
"command": "node",
"args": ["/absolute/path/to/workflows-mcp/dist/index.js"]
}
}
}
For development with hot reload:
npm run dev
Workflows are JSON documents that define a series of steps for an LLM to execute:
{
"name": "Code Review Workflow",
"description": "Automated code review with actionable feedback",
"goal": "Perform comprehensive code review",
"version": "1.0.0",
"inputs": {
"file_path": {
"type": "string",
"description": "Path to code file",
"required": true
}
},
"steps": [
{
"id": 1,
"action": "tool_call",
"tool_name": "read_file",
"parameters": {"path": "{{file_path}}"},
"save_result_as": "code_content"
},
{
"id": 2,
"action": "analyze",
"description": "Analyze code quality",
"input_from": ["code_content"],
"save_result_as": "analysis"
}
]
}
create_workflow - Create a new workflow
{
"workflow": {
"name": "My Workflow",
"description": "What it does",
"goal": "Desired outcome",
"steps": [...]
}
}
list_workflows - List all workflows with filtering
{
"filter": {
"tags": ["automation"],
"name_contains": "review"
},
"sort": {
"field": "created_at",
"order": "desc"
}
}
get_workflow - Retrieve a specific workflow
{
"id": "workflow-uuid"
}
update_workflow - Modify existing workflow
{
"id": "workflow-uuid",
"updates": {
"description": "Updated description"
},
"increment_version": true
}
delete_workflow - Soft delete (recoverable)
{
"id": "workflow-uuid"
}
start_workflow - Start a workflow execution session
{
"id": "workflow-uuid",
"inputs": {
"param1": "value1"
}
}
Returns execution instructions for the first step and an execution_id.
run_workflow_step - Execute the next step in the workflow
{
"execution_id": "execution-uuid",
"step_result": "result from previous step",
"next_step_needed": true
}
Call this after completing each step to proceed through the workflow.
get_workflow_versions - List all available versions of a workflow
{
"workflow_id": "workflow-uuid"
}
Returns list of all saved versions for version history tracking.
rollback_workflow - Rollback a workflow to a previous version
{
"workflow_id": "workflow-uuid",
"target_version": "1.0.0",
"reason": "Reverting breaking changes"
}
Restores a previous version as the active workflow.
The workflow system supports interactive, step-by-step execution similar to the sequential thinking tool:
start_workflow - returns the first step instructionsrun_workflow_step, passing:
execution_id from start_workflowstep_result from the current stepnext_step_needed: true to continue (or false to end early)Each step provides:
The workflow system supports template variable substitution using {{variable}} syntax:
"path": "output_{{format}}.txt" → "path": "output_csv.txt""Processing {{count}} records" → "Processing 100 records""Enter value for {{field}}" → "Enter value for email"Template variables are resolved from the current workflow session variables, including:
start_workflowsave_result_asThe workflow system includes advanced features to minimize token usage and improve performance for complex workflows:
Control which variables are visible to each step to dramatically reduce context size:
{
"name": "Optimized Workflow",
"strict_dependencies": true, // Enable strict mode
"steps": [
{
"id": 1,
"action": "tool_call",
"tool_name": "read_large_file",
"save_result_as": "large_data"
},
{
"id": 2,
"action": "analyze",
"input_from": ["large_data"],
"save_result_as": "summary",
"dependencies": [] // In strict mode, sees NO previous variables
},
{
"id": 3,
"action": "compose",
"dependencies": [2], // Only sees 'summary' from step 2
"save_result_as": "report"
},
{
"id": 4,
"action": "validate",
"show_all_variables": true, // Override to see everything
"save_result_as": "validation"
}
]
}
strict_dependencies (boolean, default: false)
false: Steps without dependencies see all variables (backward compatible)true: Steps without dependencies see NO variables (must explicitly declare)dependencies (array of step IDs)
show_all_variables (boolean)
Differential State Updates: Only shows variables that changed
+ variable_name: Newly added variables~ variable_name: Modified variablesProgressive Step Loading: Only shows next 3 upcoming steps
Selective Variable Display: Based on dependencies
strict_dependencies: true for workflows with large intermediate outputsPrerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.