update_global_config
Modify global configuration settings for schema compatibility, context, and registry within the MCP Kafka Schema Registry server.
Instructions
Update global configuration settings.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
compatibility | Yes | ||
context | No | ||
registry | No |
Input Schema (JSON Schema)
{
"properties": {
"compatibility": {
"title": "Compatibility",
"type": "string"
},
"context": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Context"
},
"registry": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Registry"
}
},
"required": [
"compatibility"
],
"type": "object"
}