remote-config-list
Retrieve a paginated list of remote configurations from the Hackle MCP server, filtering by status or keyword to manage A/B test settings efficiently.
Instructions
Fetch Remote Config list.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageNumber | No | ||
pageSize | No | ||
searchKeyword | No | ||
status | No | ACTIVE |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"pageNumber": {
"default": 1,
"type": "number"
},
"pageSize": {
"default": 100,
"type": "number"
},
"searchKeyword": {
"type": "string"
},
"status": {
"default": "ACTIVE",
"enum": [
"ACTIVE",
"ARCHIVED"
],
"type": "string"
}
},
"type": "object"
}