genrequest_get_all
Retrieve all GenRequests associated with a specific subthread ID on the Buu AI MCP Server to manage and organize team data efficiently.
Instructions
[PRIVATE] - Get all team's GenRequests by subthread ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
subthreadId | Yes | Subthread ID to retrieve all associated GenRequests |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"subthreadId": {
"description": "Subthread ID to retrieve all associated GenRequests",
"type": "string"
}
},
"required": [
"subthreadId"
],
"type": "object"
}