Practical Notes
- Quant: the README describes 50+ tools across Kafka, Flink SQL, Schema Registry and more.
- Quant: you can validate tool surface quickly with
--list-toolsbefore wiring it into an MCP client.
A safe integration pattern
The fastest way to get burned is to give an agent a giant, write-capable surface area on day 1. Instead:
- Start with discovery-only tools: list clusters/topics, read configs, fetch schemas.
- Add a narrow allow-list for write actions (produce, create topics) only after you have a human review loop.
- Version and review config.yaml like code: PRs, diffs, and environment scoping.
What to measure
- Time to answer “where is this message coming from?” before/after MCP adoption.
- Number of manual CLI steps replaced by agent tool calls (start with 5 per incident).
FAQ
Q: Do I need to install globally?
A: No. The README shows running via npx with a config file.
Q: How do I restrict actions? A: Use allow/block lists (see CLI options) and start with read-only exploration.
Q: What is a good first task? A: List environments/clusters/topics, then inspect one schema and consumer group flow end-to-end.