list-connectors
Retrieve active Kafka connector names via the Kafka Connect REST API to simplify specific connector read requests on the mcp-confluent server.
Instructions
Retrieve a list of "names" of the active connectors. You can then make a read request for a specific connector by name.
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. | |
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"
},
"environmentId": {
"description": "The unique identifier for the environment this resource belongs to.",
"type": "string"
}
},
"type": "object"
}