get_subjects_by_schema_id
Retrieve a list of subjects and their versions linked to a specific schema ID in Kafka Schema Registry using the MCP server. Input the schema ID to find associated subject-version pairs.
Instructions
Get subjects and versions associated with a schema ID.
Args: schema_id: The globally unique schema ID registry: Optional registry name (ignored in single-registry mode)
Returns: List of subject-version pairs that use this schema ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
registry | No | ||
schema_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"registry": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Registry"
},
"schema_id": {
"title": "Schema Id",
"type": "integer"
}
},
"required": [
"schema_id"
],
"type": "object"
}