get_all_global_fields
Retrieve all global fields with pagination and branch information options, enabling efficient management and organization of content structure in Contentstack MCP.
Instructions
Retrieves a list of all global fields, with options for pagination and including branch information.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
include_branch_info | No | Include branch information in response | |
include_count | No | Include total count of global fields | |
limit | No | Number of global fields to return (max 100) | |
skip | No | Number of global fields to skip (for pagination) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"include_branch_info": {
"default": false,
"description": "Include branch information in response",
"type": "boolean"
},
"include_count": {
"default": false,
"description": "Include total count of global fields",
"type": "boolean"
},
"limit": {
"default": 100,
"description": "Number of global fields to return (max 100)",
"type": "number"
},
"skip": {
"default": 0,
"description": "Number of global fields to skip (for pagination)",
"type": "number"
}
},
"type": "object"
}