delete-tag
Remove a tag definition from Confluent Cloud's Schema Registry by specifying the tag name using this MCP server tool.
Instructions
Delete a tag definition from Confluent Cloud.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
baseUrl | No | The base URL of the Schema Registry REST API. | |
tagName | Yes | Name of the tag to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"baseUrl": {
"default": "",
"description": "The base URL of the Schema Registry REST API.",
"format": "uri",
"type": "string"
},
"tagName": {
"description": "Name of the tag to delete",
"minLength": 1,
"type": "string"
}
},
"required": [
"tagName"
],
"type": "object"
}