-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
52 lines (52 loc) · 1.47 KB
/
Copy pathserver.json
File metadata and controls
52 lines (52 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.orieg/yaml-workflow",
"title": "YAML Workflow",
"description": "Expose declarative YAML-defined workflows as MCP tools over stdio",
"version": "0.9.6",
"repository": {
"url": "https://github.com/orieg/yaml-workflow",
"source": "github"
},
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "yaml-workflow",
"version": "0.9.6",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
},
"runtimeArguments": [
{
"type": "named",
"name": "--from",
"description": "Install the package with the [mcp] extra so the serve-mcp command is available",
"value": "yaml-workflow[mcp]"
}
],
"packageArguments": [
{
"type": "positional",
"value": "serve-mcp"
},
{
"type": "named",
"name": "--dir",
"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",
"format": "filepath",
"isRequired": true,
"default": "workflows"
}
}
}
]
}
]
}