remote-config-detail
Fetch detailed information for a specific remote configuration using the provided remoteConfigId, enabling efficient querying and management of A/B test data on the Hackle MCP server.
Instructions
Fetch remote config detail.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
remoteConfigId | Yes | Remote config's id. You can get this information by using Remote Config List Tool. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"remoteConfigId": {
"description": "Remote config's id. You can get this information by using Remote Config List Tool.",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"remoteConfigId"
],
"type": "object"
}