An MCP server exposing Apache Kafka admin and data-plane operations as tools for AI agents.
Project description
๐ฆ kafka-mcp
An MCP server that gives your AI agents eyes into Apache Kafka.
kafka-mcp exposes Kafka administration operations as Model Context Protocol tools, so assistants like
Claude Desktop, Claude Code, or any MCP-compatible client can inspect and operate your cluster in plain language โ
"list all my topics with their replication factor" โ instead of you reaching for the CLI.
It ships with a batteries-included docker-compose.yml that spins up a complete local Kafka lab
(KRaft broker + Schema Registry + Web UI) so you can try it end-to-end in minutes.
โจ Features
- ๐ Drop-in MCP server โ runs over
stdio, so any MCP client can launch it as a subprocess. - ๐ Topic management โ list & describe topics, create / delete, add partitions, and read or alter configs.
- ๐ฅ Consumer group insight โ list & describe groups, inspect members & assignments, and compute per-partition lag.
- ๐จ Produce & peek โ send a message to a topic, or read recent records back without committing offsets.
- ๐ฉบ Cluster & offset views โ describe brokers / controller and fetch earliest / latest watermarks per partition.
- โก Async-friendly โ blocking Kafka admin calls are offloaded to worker threads so the event loop stays snappy.
- ๐ณ Self-contained local lab โ one
docker compose upgives you Kafka (KRaft, no ZooKeeper), Schema Registry, and a Web UI. - ๐ ๏ธ Tiny & hackable โ a single
main.pyyou can read in one sitting and extend with new tools.
๐งญ How it works
โโโโโโโโโโโโโโโโโโโโ MCP over stdio โโโโโโโโโโโโโโโโโโโโ Kafka Admin API โโโโโโโโโโโโโโโโโโโโ
โ AI Agent โ โโโโโโโโโโโโโโโโโถ โ kafka-mcp โ โโโโโโโโโโโโโโโโโโถ โ Kafka broker โ
โ (Claude, etc.) โ tool calls โ (FastMCP server)โ confluent-kafka โ (localhost:9092)โ
โโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโ
The agent never talks to Kafka directly โ it calls a tool, kafka-mcp translates that into a
confluent-kafka admin or client request, and returns structured JSON the model can reason about.
๐ฆ Prerequisites
- Python 3.12+
- uv for dependency management (recommended)
- Docker + Docker Compose (only if you want the local Kafka lab)
๐ Quick start
1. Clone & install
git clone <your-repo-url> kafka-mcp
cd kafka-mcp
uv sync
2. Start a local Kafka (optional, but handy)
docker compose up -d
This brings up three services:
| Service | URL / Port | What it's for |
|---|---|---|
| Kafka broker | localhost:9092 |
The broker your MCP server connects to |
| Schema Registry | http://localhost:8081 |
Avro/Protobuf/JSON schema management |
| Kafka UI | http://localhost:8080 |
Browse topics, messages, and consumer groups |
๐ก Auto-create topics is enabled, so you can produce to a new topic and watch it appear via the MCP
list_topicstool.
3. Run the MCP server
uv run main.py
You should see:
Kafka MCP for you agents!
The server is now listening on stdio, ready for an MCP client to connect.
๐ค Connecting an MCP client
Most clients (Claude Desktop, Claude Code, โฆ) launch MCP servers from a JSON config. Point them at this project like so:
{
"mcpServers": {
"kafka-zaksway": {
"command": "uv",
"args": ["--directory", "/absolute/path/to/kafka-mcp", "run", "main.py"],
"env": {
"BOOTSTRAP_SERVER": "localhost:9092"
}
}
}
}
- Claude Desktop โ add the block to
claude_desktop_config.json. - Claude Code โ
claude mcp add kafka-zaksway -- uv --directory /absolute/path/to/kafka-mcp run main.py
Restart the client, and kafka-zaksway will appear among your available tools.
๐งฐ Available tools
kafka-mcp exposes 14 tools spanning topic management, consumer groups, the cluster, and the data plane.
Tools marked โ ๏ธ are destructive (they delete data) โ agents should confirm before calling them.
| Category | Tool | Parameters | Description |
|---|---|---|---|
| Topics | list_topics |
withInternal: bool |
List topics with partition count & replication factor. |
| Topics | describe_topic |
topic: str |
Per-partition leader / replicas / ISR + non-default config overrides. |
| Topics | create_topic |
topic: str, partitions: int = 1, replication_factor: int = 1, config: dict = {} |
Create a new topic. |
| Topics | delete_topic โ ๏ธ |
topic: str |
Permanently delete a topic and all of its data. |
| Topics | add_partitions |
topic: str, new_total_count: int |
Increase a topic's partition count (cannot shrink). |
| Topics | alter_topic_config |
topic: str, config: dict |
Set / update topic configuration entries. |
| Topics | get_topic_offsets |
topic: str |
Earliest & latest offsets (watermarks) per partition. |
| Cluster | describe_cluster |
โ | Cluster id, controller broker, and broker list. |
| Groups | list_consumer_groups |
โ | All consumer groups with their state. |
| Groups | describe_consumer_group |
group_id: str |
State, coordinator, members & their partition assignments. |
| Groups | consumer_group_lag |
group_id: str |
Committed offset, end offset, and lag per partition. |
| Groups | delete_consumer_group โ ๏ธ |
group_id: str |
Permanently delete a consumer group. |
| Data | produce_message |
topic: str, value: str, key: str = null, partition: int = null |
Produce a single message and await delivery. |
| Data | consume_messages |
topic: str, max_messages: int = 10, timeout_seconds: float = 5.0, from_beginning: bool = true |
Peek recent messages without committing offsets. |
๐ก The registered MCP tool names are full descriptive sentences (e.g.
Show committed offsets and lag for a Kafka consumer group); the short identifiers above mirror the Python functions inmain.pyand are used here for brevity.
Example โ list_topics response:
[
{ "name": "orders", "partitions": 6, "replication-factor": 1 },
{ "name": "payments", "partitions": 3, "replication-factor": 1 }
]
โ๏ธ Configuration
The server is configured entirely through environment variables.
| Variable | Default | Description |
|---|---|---|
BOOTSTRAP_SERVER |
localhost:9092 |
Kafka bootstrap server(s) to connect to. |
๐ฆ Releasing to PyPI
The package is published to PyPI as zaksway-kafka-mcp by a GitHub Actions workflow (.github/workflows/publish.yml) that triggers on v* version tags and authenticates via Trusted Publishing (OIDC) โ no API tokens stored anywhere.
One-time setup โ register a Trusted Publisher on PyPI:
| Field | Value |
|---|---|
| Owner | zakariahere |
| Repository | zaksway-kafka-mcp |
| Workflow filename | publish.yml |
| Environment | pypi |
To cut a release:
# 1. Bump `version` in pyproject.toml (e.g. 0.1.0 -> 0.2.0), then:
git commit -am "release: v0.2.0"
git tag v0.2.0
git push origin master --tags
The workflow verifies the tag matches pyproject.toml, builds the wheel + sdist, smoke-tests both, and publishes. Once published, anyone can run it with zero install:
uvx zaksway-kafka-mcp # run the server directly
# or
pip install zaksway-kafka-mcp # then run: kafka-zaksway
๐๏ธ Project structure
kafka-mcp/
โโโ src/zaksway_kafka_mcp/
โ โโโ __init__.py # The MCP server + all 14 tool definitions
โ โโโ __main__.py # `python -m zaksway_kafka_mcp` entry point
โโโ tests/
โ โโโ smoke_test.py # Import/packaging check run in CI before publish
โโโ .github/workflows/
โ โโโ publish.yml # Build + publish to PyPI on `v*` tags (Trusted Publishing)
โโโ main.py # Backward-compat shim (keeps `uv run main.py` working)
โโโ docker-compose.yml # Local Kafka lab (broker + schema registry + UI)
โโโ pyproject.toml # Project metadata, dependencies & build backend
โโโ uv.lock # Pinned dependency lockfile
โโโ README.md # You are here
๐ฃ๏ธ Roadmap
Recently shipped โ
-
create_topic/delete_topic -
add_partitions&alter_topic_config - Describe consumer groups & their lag
- Peek at the latest messages on a topic
Ideas for what's next:
- Reset / set consumer group offsets
- ACL management (list / create / delete)
- Broker config inspection
- Schema Registry integration (list subjects & schemas)
๐งโ๐ป Author
Zakaria BOUAZZA : https://zakaria.lu
๐ License
No license has been specified yet. Add one (e.g. MIT) before sharing publicly.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file zaksway_kafka_mcp-0.1.0.tar.gz.
File metadata
- Download URL: zaksway_kafka_mcp-0.1.0.tar.gz
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d954156859976e85b67402a4e44dd4d2addd1a6638be05603b7ff1c7d0d20fc8
|
|
| MD5 |
1845191504a6ad1b8a9b47630fd91f8a
|
|
| BLAKE2b-256 |
590ea87c56c829ddcdee72aa8507906bed368272723de9986699c95ac3d49b6d
|
File details
Details for the file zaksway_kafka_mcp-0.1.0-py3-none-any.whl.
File metadata
- Download URL: zaksway_kafka_mcp-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc4523c598ab88d933fc9acfe968a32d86695a1f71954636966b0d7d58ef1961
|
|
| MD5 |
f8e70a3ed08916a280c82f1c98390162
|
|
| BLAKE2b-256 |
c3f9bc4b8d1caf55969d48153de6377c3b78e90589c19f92c8efd9cb81380a1e
|