Tool details
| Field | Value |
|---|---|
| Name | list_prompts |
| Group | Project Primitives |
Playground
Input schema
Input schema
{
"type": "object",
"properties": {
"project_reference": {
"type": "string",
"description": "Project ID or slug"
},
"runtime_target_kind": {
"anyOf": [
{
"type": "string",
"enum": [
"production",
"environment",
"preview_branch"
],
"description": "Provide the runtime target kind."
},
{
"type": "null",
"description": "Provide the runtime target kind."
}
],
"description": "Provide the runtime target kind."
},
"target_environment_id": {
"anyOf": [
{
"type": "string",
"format": "uuid",
"description": "Provide the target environment id."
},
{
"type": "null",
"description": "Provide the target environment id."
}
],
"description": "Provide the target environment id."
},
"target_branch_id": {
"anyOf": [
{
"type": "string",
"format": "uuid",
"description": "Provide the target branch id."
},
{
"type": "null",
"description": "Provide the target branch id."
}
],
"description": "Provide the target branch id."
},
"source_target_kind": {
"type": "string",
"enum": [
"project",
"production",
"environment",
"preview_branch"
],
"description": "Provide the source target kind."
}
},
"required": [
"project_reference"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Input schema for the list_prompts tool."
}
Output schema
Output schema
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the record."
},
"name": {
"type": "string",
"description": "Human-readable name for the record."
},
"description": {
"type": [
"string",
"null"
],
"description": "Human-readable description for the record."
},
"source_path": {
"type": "string",
"description": "The source path associated with this record."
}
},
"required": [
"id",
"name",
"description",
"source_path"
],
"additionalProperties": false,
"description": "Structured prompt output schema for MCP tools."
},
"description": "Primary record collection."
}
},
"required": [
"data"
],
"additionalProperties": false,
"description": "Structured list prompts output schema for MCP tools.",
"$schema": "http://json-schema.org/draft-07/schema#"
}