search_flows
Find and retrieve workflow flows by name or tags using the Prefect MCP Server. Filter results with specific criteria and set a limit for the number of flows returned.
Instructions
Search for flows by name and/or tags.
Args:
name: Optional name to search for (case-insensitive contains match).
tags: Optional list of tags to filter by.
limit: Maximum number of flows to return (default 20).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
name | No | ||
tags | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"default": 20,
"title": "Limit",
"type": "integer"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Name"
},
"tags": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Tags"
}
},
"title": "search_flowsArguments",
"type": "object"
}