Skip to main content
Glama
dockndevai

mcp-debezium

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
CONNECT_URLYesBase URL of the Kafka Connect REST API.
DEBEZIUM_MODENoAccess mode. read-only exposes monitoring only; read-write adds lifecycle management; admin adds delete. Tools above the mode are never registered.read-only
DEBEZIUM_DRY_RUNNoWhen true, write/admin tools validate and log intent without calling Kafka Connect.false
DEBEZIUM_AUDIT_LOGNoWhen true, emits a JSON line to stderr per guarded operation.true
DEBEZIUM_ALLOW_DELETENoEnables the delete_connector tool when combined with admin mode.false
DEBEZIUM_CONNECTOR_ALLOWLISTNoComma-separated list of connectors that are in scope. When set, operations on other connectors are refused. Defaults to all connectors.
DEBEZIUM_PROTECTED_CONNECTORSNoComma-separated list of connectors that are read-only forever. Inspectable but never paused, reconfigured, or deleted. Defaults to none.

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
cluster_infoA

Kafka Connect worker version, commit, and Kafka cluster id.

list_connectorsA

List connector names. Connectors outside the allowlist are filtered out.

list_connector_pluginsA

List the connector plugin classes installed on the worker (incl. Debezium connectors).

get_connectorA

Full connector info (config + tasks). Secret config values are redacted.

get_connector_configA

The connector's configuration map. Secret values are redacted.

get_connector_statusB

Connector and task states (RUNNING / PAUSED / FAILED), worker assignment, and failure traces.

get_connector_topicsB

The set of topics a connector has read from or written to.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.7/5.0

Scored across 7 tools

Disambiguation4/5

Most tools target distinct aspects of Kafka Connect/Debezium introspection. get_connector overlaps somewhat with get_connector_config and get_connector_status because it returns full connector info including config and tasks, but the descriptions clarify the specialized scopes.

Naming Consistency4/5

The naming is mostly consistent snake_case with clear verb_noun patterns such as get_connector_config and list_connectors. cluster_info is a minor deviation because it lacks a verb, but it remains readable and predictable.

Tool Count5/5

Seven tools is well-scoped for a connector introspection server. Each tool covers a distinct read-only concern, from connector lists and configs to status, topics, plugins, and cluster info.

Completeness4/5

The read-only introspection surface is largely complete: connectors, config, status, topics, plugins, and cluster details are covered. Mutation or lifecycle operations like create, update, restart, pause, and delete are absent, but they may be outside this server's apparent monitoring scope.

Maintenance

ActivityMaintained
ResponsivenessNo issues