Back to Browse

Kafka Sentinel MCP Server

SecurityModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Read-only Kafka observability MCP server: cluster health, consumer lag, and replay-readiness.

About

Read-only Kafka observability MCP server: cluster health, consumer lag, and replay-readiness.

Security Report

5.2
Moderate5.2Moderate Risk

kafka-sentinel-mcp is a well-designed read-only Kafka observability MCP server with strong security fundamentals. The codebase enforces read-only operations by design (no mutation APIs imported), handles credentials securely via environment variables without logging, and includes comprehensive audit logging. Minor code quality observations around broad exception handling and environment variable validation do not materially impact security posture. Supply chain analysis found 5 known vulnerabilities in dependencies (0 critical, 5 high severity). Package verification found 1 issue.

6 files analyzed · 10 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

env_vars

Check that this permission is expected for this type of plugin.

HTTP Network Access

Connects to external APIs or services over the internet.

What You'll Need

Set these up before or after installing:

Kafka bootstrap servers, e.g. broker1:9092,broker2:9092Optional

Environment variable: KAFKA_BOOTSTRAP

librdkafka security.protocol, e.g. SASL_SSLOptional

Environment variable: KAFKA_SECURITY_PROTOCOL

librdkafka sasl.mechanism, e.g. PLAIN or SCRAM-SHA-512Optional

Environment variable: KAFKA_SASL_MECHANISM

SASL usernameOptional

Environment variable: KAFKA_SASL_USERNAME

SASL passwordRequired

Environment variable: KAFKA_SASL_PASSWORD

Path to CA certificate for SSLOptional

Environment variable: KAFKA_SSL_CA_LOCATION

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-sanjay-amu-kafka-sentinel-mcp": {
      "env": {
        "KAFKA_BOOTSTRAP": "your-kafka-bootstrap-here",
        "KAFKA_SASL_PASSWORD": "your-kafka-sasl-password-here",
        "KAFKA_SASL_USERNAME": "your-kafka-sasl-username-here",
        "KAFKA_SASL_MECHANISM": "your-kafka-sasl-mechanism-here",
        "KAFKA_SSL_CA_LOCATION": "your-kafka-ssl-ca-location-here",
        "KAFKA_SECURITY_PROTOCOL": "your-kafka-security-protocol-here"
      },
      "args": [
        "kafka-sentinel-mcp"
      ],
      "command": "uvx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

kafka-sentinel-mcp

CI PyPI Python License: MIT

Give AI agents safe, read-only eyes on your Kafka clusters.

An MCP (Model Context Protocol) server that exposes Kafka cluster health, consumer lag, partition state, and replay-readiness as structured tools — so LLM agents (Claude, or any MCP client) can diagnose streaming incidents without ever being able to break anything.

Built by an engineer who spent a decade running Kafka-based financial messaging at 99.999% availability, and got tired of every "AI + Kafka" demo assuming write access to production.

Why this exists

When a consumer group stalls at 3 a.m., the questions are always the same: Is it lag? A stuck partition? A rebalance storm? An offset reset gone wrong? These are pattern-matching questions — exactly what LLM agents are good at — but no operator will hand an agent admin rights on a production cluster.

kafka-sentinel-mcp draws a hard line: every tool is read-only by design, enforced at the client-config level (no admin operations are even imported). The agent can observe, correlate, and recommend; a human executes.

Tools

ToolWhat it returns
list_topicsAll non-internal topics with partition count and replication factor — start here if you don't know a topic name
list_consumer_groupsAll consumer group IDs with state — start here if you don't know a group name
cluster_healthBroker count, controller status, under-replicated / offline partition counts
consumer_lagPer-group, per-topic, per-partition lag with committed vs end offsets
topic_auditReplication factor, min.insync.replicas, retention, and flags configs that violate durability best practice
partition_stateLeaders, ISR shrinkage, skew across brokers
replay_readinessFor a group + topic: earliest available offsets vs committed, i.e., "can we still replay what we missed?"
incident_snapshotOne-call bundle of all the above, timestamped — designed for pasting into a postmortem

Quick start

pip install kafka-sentinel-mcp   # (or: uv tool install)

# Run against your cluster (read-only credentials!)
KAFKA_BOOTSTRAP=localhost:9092 kafka-sentinel-mcp

Add to Claude Desktop / any MCP client:

{
  "mcpServers": {
    "kafka-sentinel": {
      "command": "kafka-sentinel-mcp",
      "env": { "KAFKA_BOOTSTRAP": "broker1:9092,broker2:9092" }
    }
  }
}

Then ask your agent: "Why is the payments-consumer group falling behind, and can we still replay from where it stalled?"

Security posture

  • Read-only by construction: no produce, no topic/config mutation, no offset commits, no ACL ops. The mutation APIs are never imported, and a test in CI greps the server source on every run to keep it that way.

  • The observer consumer runs with enable.auto.commit=False and never commits — verified against a real broker, not just asserted.

  • Supports SASL/SSL; credentials are read from the environment only and never logged.

  • Every tool call is logged with its parameters for audit.

  • Least privilege: run with a principal that has only Describe on the cluster and topics, and Describe on consumer groups. When an ACL denies an operation the tool returns a structured result rather than a stack trace:

    {
      "error": "permission_denied",
      "operation": "list_consumer_groups",
      "detail": "...",
      "hint": "The Kafka principal in use lacks the ACL required for this operation. ..."
    }
    

    The agent can then tell the operator which ACL is missing instead of appearing broken. Non-authorization failures are deliberately not swallowed — they propagate, because silently degrading on an unrelated error would hide real problems.

Testing

pip install -e ".[dev]"

pytest -m "not integration"   # fast, fully mocked — no Docker needed
pytest -m integration         # starts a real Kafka via testcontainers (needs Docker)
pytest                        # both

The unit suite mocks librdkafka entirely and covers tool logic. The integration suite starts an actual broker, produces real records, and asserts the tools return correct lag, ISR state, durability flags, and replay-readiness — including that the observer leaves no committed offsets behind. Both run in CI.

Status

Early but tested. See ROADMAP.md. Issues and PRs welcome — especially war stories about what you wish an agent could have told you during an incident.

Citing this work

If you reference this project in academic work, see CITATION.cff, or use the "Cite this repository" button on GitHub.

License

MIT

Reviews

No reviews yet

Be the first to review this server!

Kafka Sentinel MCP Server - Read-only Kafka observability MCP server: cluster health, | MCP Marketplace