Tool details
| Field | Value |
|---|---|
| Name | list_project_templates |
| Group | Templates |
Playground
Input schema
Input schema
{
"type": "object",
"properties": {
"cursor": {
"type": "string",
"description": "Opaque pagination cursor returned by a previous response."
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"description": "Maximum number of results to return."
}
},
"additionalProperties": false,
"description": "Input schema for the list_project_templates tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
Output schema
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"slug": {
"type": "string",
"description": "The slug associated with this tool result."
},
"name": {
"type": "string",
"description": "Human-readable name for the returned record."
},
"description": {
"type": "string",
"description": "Human-readable description returned by the tool."
},
"category": {
"type": "string",
"description": "The category associated with this tool result."
},
"coming_soon": {
"type": "boolean",
"description": "The coming soon associated with this tool result."
}
},
"required": [
"slug",
"name",
"description",
"category",
"coming_soon"
],
"additionalProperties": false,
"description": "One data item associated with this tool result."
},
"description": "Primary result records returned by the tool."
},
"page_info": {
"type": "object",
"properties": {
"self": {
"type": [
"string",
"null"
],
"description": "Cursor that refers to the current page."
},
"first": {
"type": [
"string",
"null"
],
"description": "The first associated with this tool result."
},
"next": {
"type": [
"string",
"null"
],
"description": "Cursor for the next page when pagination is available."
},
"prev": {
"type": [
"string",
"null"
],
"description": "Cursor for the previous page when pagination is available."
}
},
"required": [
"self",
"first",
"next",
"prev"
],
"additionalProperties": false,
"description": "Pagination cursor values for traversing the result set."
}
},
"required": [
"data",
"page_info"
],
"additionalProperties": false,
"description": "Structured result returned by the list_project_templates tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}