read-connector
Retrieve detailed information about a specific Kafka connector by providing its unique name, base URL, environment ID, and cluster ID using the MCP server.
Instructions
Get information about the connector.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
baseUrl | No | The base URL of the Kafka Connect REST API. | |
clusterId | No | The unique identifier for the Kafka cluster. | |
connectorName | Yes | The unique name of the connector. | |
environmentId | No | The unique identifier for the environment this resource belongs to. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"baseUrl": {
"default": "",
"description": "The base URL of the Kafka Connect REST API.",
"format": "uri",
"type": "string"
},
"clusterId": {
"description": "The unique identifier for the Kafka cluster.",
"type": "string"
},
"connectorName": {
"description": "The unique name of the connector.",
"minLength": 1,
"type": "string"
},
"environmentId": {
"description": "The unique identifier for the environment this resource belongs to.",
"type": "string"
}
},
"required": [
"connectorName"
],
"type": "object"
}