delete_context
Remove a schema context in the MCP Kafka Schema Registry to manage and organize schema definitions effectively. Specify the context and registry for precise deletion.
Instructions
Delete a schema context.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | Yes | ||
registry | No |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"title": "Context",
"type": "string"
},
"registry": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Registry"
}
},
"required": [
"context"
],
"type": "object"
}