← Back to Plugins
MCP Server MCP

YAML Workflow

github By github 👁 1 views ▲ 0 votes

Expose declarative YAML-defined workflows as MCP tools over stdio

Homepage Verified source GitHub

Install

uvx yaml-workflow

Configuration Example

{
  "remotes": [],
  "packages": [
    {
      "registryType": "pypi",
      "registryBaseUrl": "https://pypi.org",
      "identifier": "yaml-workflow",
      "version": "0.9.6",
      "runtimeHint": "uvx",
      "transport": {
        "type": "stdio"
      },
      "runtimeArguments": [
        {
          "description": "Install the package with the [mcp] extra so the serve-mcp command is available",
          "value": "yaml-workflow[mcp]",
          "type": "named",
          "name": "--from"
        }
      ],
      "packageArguments": [
        {
          "value": "serve-mcp",
          "type": "positional"
        },
        {
          "description": "Directory containing workflow YAML definitions to expose as tools",
          "isRequired": true,
          "value": "{workflow_dir}",
          "variables": {
            "workflow_dir": {
              "description": "Path to the directory of workflow definitions",
              "isRequired": true,
              "format": "filepath",
              "default": "workflows"
            }
          },
          "type": "named",
          "name": "--dir"
        }
      ]
    }
  ]
}
mcp model-context-protocol pypi

Comments

Sign in to leave a comment

Loading comments...