# Send MCP Workflow to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "mcp-workflow",
    "name": "MCP Workflow",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/slemo54/mcp-workflow",
    "canonicalUrl": "https://clawhub.ai/slemo54/mcp-workflow",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/mcp-workflow",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mcp-workflow",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/jason-zhou-insights.md",
      "references/mcp-spec.md",
      "references/workflow-patterns.md",
      "scripts/mcp-server.js",
      "scripts/templates/code-review.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "mcp-workflow",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-05T04:46:23.305Z",
      "expiresAt": "2026-05-12T04:46:23.305Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mcp-workflow",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=mcp-workflow",
        "contentDisposition": "attachment; filename=\"mcp-workflow-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "mcp-workflow"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/mcp-workflow"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/mcp-workflow",
    "downloadUrl": "https://openagent3.xyz/downloads/mcp-workflow",
    "agentUrl": "https://openagent3.xyz/skills/mcp-workflow/agent",
    "manifestUrl": "https://openagent3.xyz/skills/mcp-workflow/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/mcp-workflow/agent.md"
  }
}
```
## Documentation

### Quick Reference

# Start MCP Server
node scripts/mcp-server.js

# Run a workflow
./scripts/workflow-engine.sh run <workflow-name> [--input <json>]

# List available workflows
./scripts/workflow-engine.sh list

# Create new workflow from template
./scripts/workflow-engine.sh create <name> --from <template>

# Validate workflow
./scripts/workflow-engine.sh validate <workflow-file>

### Overview

This skill implements workflow automation using the Model Context Protocol (MCP), enabling:

Prompt Chains: Multi-step prompt sequences
Dynamic Workflows: Context-aware adaptation
Resource Integration: File/data embedding
Cross-Server Coordination: Multi-MCP orchestration

### 1. Prompt Chain Pattern

plan → generate → execute → validate

### 2. Dynamic Prompt Pattern

context → adapt → generate → output

### 3. Resource Embedding Pattern

resource://{type}/{id} → load → embed → process

### 4. External Trigger Pattern

trigger → validate → dispatch → execute

### Built-in Templates

TemplateDescriptionUse Casemeal-plannerWeekly meal planningNutrition, shopping listscode-reviewAutomated code reviewPR analysis, quality checksweekly-reportStatus report generationTeam updates, metricsdocumentation-generatorDoc generationAPI docs, changelogs

### Resources

file://{path} - File system access
memory://{key} - Memory storage
config://{section} - Configuration values

### Tools

workflow.run - Execute workflow
workflow.list - List workflows
workflow.validate - Validate workflow JSON
prompt.render - Render prompt template

### Prompts

chain:plan - Planning prompt
chain:generate - Generation prompt
chain:review - Review prompt

### Meal Planner Workflow

./scripts/workflow-engine.sh run meal-planner \\
  --input '{"diet":"vegetarian","days":7,"budget":50}'

### Code Review Workflow

./scripts/workflow-engine.sh run code-review \\
  --input '{"repo":"myapp","pr":123}'

### Weekly Report

./scripts/workflow-engine.sh run weekly-report \\
  --input '{"project":"dashboard","week":"2024-W01"}'

### 1. Workflow Design

Keep steps atomic and focused
Use clear input/output contracts
Implement error handling at each step
Version your workflows

### 2. Prompt Engineering

Use system prompts for context
Provide examples in few-shot prompts
Chain prompts for complex tasks
Validate outputs before next step

### 3. Resource Management

Use URI patterns consistently
Cache frequently accessed resources
Clean up temporary resources
Document resource schemas

### 4. Cross-Server Coordination

Define clear interfaces between servers
Use standardized message formats
Implement health checks
Handle timeouts gracefully

### Configuration

Create ~/.openclaw/mcp-workflow.json:

{
  "servers": [
    {
      "name": "local",
      "command": "node scripts/mcp-server.js",
      "env": {}
    }
  ],
  "workflowsDir": "./workflows",
  "templatesDir": "./scripts/templates",
  "defaultTimeout": 30000
}

### Integration with OpenClaw

Use in your OpenClaw session:

# Load the skill
openclaw skill load mcp-workflow

# Run workflow
openclaw workflow run meal-planner --input '{"days":5}'

### References

MCP Specification
Workflow Patterns
Jason Zhou Insights
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: slemo54
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-05T04:46:23.305Z
- Expires at: 2026-05-12T04:46:23.305Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/mcp-workflow)
- [Send to Agent page](https://openagent3.xyz/skills/mcp-workflow/agent)
- [JSON manifest](https://openagent3.xyz/skills/mcp-workflow/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/mcp-workflow/agent.md)
- [Download page](https://openagent3.xyz/downloads/mcp-workflow)