Skip to main content
Glama
KietDev-JS

redpanda-console-mcp

by KietDev-JS

describe_topic

Get the effective configuration of a Kafka topic to inspect its settings and resolve misconfigurations.

Instructions

Get the effective configuration of a topic.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
topicYesKafka topic name.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. 'Get' signals a read operation, but the description does not disclose how 'effective configuration' is computed, what permissions are needed, or any error behavior. It is not misleading, but it is minimal.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, direct sentence with no filler. The core verb and object are front-loaded, making the definition easy to scan and understand.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is low complexity with one required, well-documented parameter. The description is sufficient for invocation, though it does not describe the shape or contents of the returned configuration, which would be a minor completeness improvement.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already fully documents the only parameter as 'Kafka topic name.' The description adds no extra meaning beyond identifying the resource being queried, so the baseline of 3 applies.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Get') and resource ('effective configuration of a topic'), making the tool's purpose immediately clear. It also distinguishes itself from siblings such as list_topics, fetch_latest, and cluster_info, which cover different concerns.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no explicit guidance about when to use this tool versus alternatives. The intended context is implied by the word 'configuration', but an agent must infer that this is for topic configuration rather than message fetching or cluster-level details.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.