| Tool | Mode | Operations |
|---|---|---|
kafka_admin_topics_read |
read | list, get, metadata |
kafka_admin_topics_write |
write | create, delete |
Claude connector safety: Actual MCP tools are split into kafka_admin_topics_read and kafka_admin_topics_write. The read tool is read-only and only exposes read operations/parameters. The write tool is destructive and is not registered in read-only mode.
Read Kafka topic lists, configurations, and metadata.
-
topics
- list: List topics in the Kafka cluster
includeInternal(boolean, optional): Include internal Kafka topics. Default: false
- list: List topics in the Kafka cluster
-
topic
- get: Get detailed configuration for a topic
name(string, required): Kafka topic name
- metadata: Get metadata for a topic
name(string, required): Kafka topic name
- get: Get detailed configuration for a topic
Create or delete Kafka topics.
- topic
- create: Create a topic
name(string, required): Kafka topic namepartitions(number, optional): Number of partitionsreplicationFactor(number, optional): Replication factorconfigs(object, optional): Topic configuration overrides
- delete: Delete a topic
name(string, required): Kafka topic name
- create: Create a topic