Outputs
Output format descriptions referenced as outputId in prompts.
search_outputs read-only
Search or list output formats (e.g. "a markdown table" or "a bulleted list"). Output ids can be referenced as outputId in create_prompt / update_prompt.
| Parameter | Type | Required | Description |
|---|---|---|---|
page | integer | no | 1-based page number. Default: 1. |
pageSize | 6 | 12 | 24 | 48 | 100 | no | Items per page. The server only accepts these exact values. Default: 12. |
sort | "newest" | "most-upvoted" | "most-favorited" | no | Sort order. Default: newest. |
scope | "public" | "mine" | "favorites" | "all" | no | public = community items, mine = the user's own items, favorites = items the user favorited, all = everything accessible to the user. Default: public. |
search | string | no | Full-text search over title and description. Max 200 characters. |
tag | string | no | Filter by a single tag (exact match). |
{
"name": "search_outputs",
"arguments": {}
}
get_output read-only
Fetch one output format by id.
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Output id. |
{
"name": "get_output",
"arguments": {
"id": "..."
}
}
create_output write · non-destructive
Create an output format. The returned id can be referenced as outputId in prompts.
| Parameter | Type | Required | Description |
|---|---|---|---|
label | string | yes | The output format description, e.g. "a markdown table". |
isPublic | boolean | yes | true publishes the item to the public community feed; false keeps it private to the user. Required: choose deliberately, server defaults are not applied. |
tags | string[] | no | Tags for categorisation and tag-filtered search. |
{
"name": "create_output",
"arguments": {
"label": "...",
"isPublic": false
}
}
update_output write · non-destructive
Update an output format in place. Outputs are not versioned: the previous label is overwritten without history.
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | yes | Output id. |
label | string | yes | New output format description. |
isPublic | boolean | no | Optionally change visibility. |
tags | string[] | no | Tags for categorisation and tag-filtered search. |
{
"name": "update_output",
"arguments": {
"id": "...",
"label": "..."
}
}