fetch_component_folders
Retrieve all component folders directly from Storyblok MCP Server, enabling structured organization and optional filtering by search term or parent ID.
Instructions
Retrieves all component folders (non-paginated), with optional filtering.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
search | No | ||
with_parent | No |
Input Schema (JSON Schema)
{
"properties": {
"search": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Search"
},
"with_parent": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "With Parent"
}
},
"title": "fetch_component_foldersArguments",
"type": "object"
}