get_block_types
Retrieve available block types from Prefect workflows with filtering options to find specific components for workflow automation.
Instructions
Get a list of block types with optional filtering.
Args: limit: Maximum number of block types to return offset: Number of block types to skip slug: Filter by slug pattern
Returns: A list of block types with their details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | ||
offset | No | ||
slug | No |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"offset": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Offset"
},
"slug": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Slug"
}
},
"type": "object"
}