Kafka MCP Server
Provides tools for managing Apache Kafka clusters, including topic operations, message sending/consuming, consumer group monitoring, and cluster health checks.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Kafka MCP ServerCheck the health of my Kafka cluster."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Kafka MCP Server
A comprehensive Model Context Protocol (MCP) server for Apache Kafka operations, enabling seamless integration with Claude Desktop and other MCP clients.
๐ Features
Cluster Management: Monitor cluster health, broker information, and metadata
Topic Operations: Create, list, describe, and delete Kafka topics
Message Operations: Send and consume messages with flexible configuration
Consumer Group Management: List and describe consumer groups
Real-time Monitoring: Get topic metrics, offsets, and performance data
Health Checks: Comprehensive cluster health monitoring
Secure Configuration: Support for SASL, SSL, and various authentication methods
๐ Prerequisites
Python 3.8+
Apache Kafka cluster (local or remote)
pip package manager
๐ ๏ธ Installation
Clone the repository:
git clone https://github.com/aswinayyolath/kafka-mcp-server.git cd kafka-mcp-serverCreate a virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activateInstall dependencies:
pip install mcp kafka-pythonConfigure environment variables:
cp .env.template .env # Edit .env with your Kafka configuration
โ๏ธ Configuration
Environment Variables
Create a .env file based on .env.template:
# Basic Kafka Configuration
KAFKA_BOOTSTRAP_SERVERS=localhost:9092
KAFKA_SECURITY_PROTOCOL=PLAINTEXT
# SASL Configuration (if needed)
KAFKA_SASL_MECHANISM=PLAIN
KAFKA_SASL_USERNAME=your_username
KAFKA_SASL_PASSWORD=your_password
# SSL Configuration (if needed)
KAFKA_SSL_CAFILE=/path/to/ca.pem
KAFKA_SSL_CERTFILE=/path/to/cert.pem
KAFKA_SSL_KEYFILE=/path/to/key.pemDocker Setup (Optional)
Start a local Kafka cluster using Docker:
docker-compose up -dThis will start Kafka on localhost:9092.
๐งช Testing
Run the comprehensive test suite to validate your setup:
# Set environment variables
export KAFKA_BOOTSTRAP_SERVERS=localhost:9092
export KAFKA_SECURITY_PROTOCOL=PLAINTEXT
# Run tests
python test_kafka_mcp.pyThe test suite validates:
Kafka connectivity
MCP server startup
All available tools
Topic operations
Message operations
Resources and prompts
๐ง Usage
Standalone Server
Run the MCP server directly:
python kafka_mcp_server.pyClaude Desktop Integration
Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"kafka": {
"command": "python",
"args": ["/path/to/kafka_mcp_server.py"],
"env": {
"KAFKA_BOOTSTRAP_SERVERS": "localhost:9092",
"KAFKA_SECURITY_PROTOCOL": "PLAINTEXT"
}
}
}
}๐ ๏ธ Available Tools
Cluster Operations
get_cluster_info- Get comprehensive cluster informationhealth_check- Perform cluster health check
Topic Operations
list_topics- List all topics in the clustercreate_topic- Create a new topicdescribe_topic- Get detailed topic informationdelete_topic- Delete a topicget_topic_metrics- Get comprehensive topic metricsget_topic_offsets- Get partition offsets
Message Operations
send_message- Send a single messagesend_batch_messages- Send multiple messagesconsume_messages- Consume messages from a topic
Consumer Group Operations
list_consumer_groups- List all consumer groupsdescribe_consumer_group- Get detailed consumer group information
๐ Resources
The server provides MCP resources for easy access to cluster information:
kafka://cluster/info- Real-time cluster informationkafka://topics/list- Current topics list
๐ฏ Prompts
Built-in prompts for common scenarios:
kafka_monitoring_prompt- Generate monitoring and troubleshooting guidancekafka_troubleshooting_prompt- Get help with specific issues
๐ก Example Usage with Claude
Once integrated with Claude Desktop, you can ask:
"Can you check the health of my Kafka cluster?"
"List all topics and their partition counts"
"Create a topic called 'user-events' with 3 partitions"
"Send a test message to the user-events topic"
"Show me the last 10 messages from user-events"
"What consumer groups are active?"
๐ Security
Authentication
The server supports various Kafka authentication methods:
PLAINTEXT: No authentication (development only)
SASL_PLAINTEXT: SASL authentication over plain connection
SASL_SSL: SASL authentication over SSL
SSL: SSL client certificate authentication
Best Practices
Never commit
.envfiles - Use.env.templatefor examplesUse SSL in production - Always encrypt connections to production clusters
Limit permissions - Use dedicated service accounts with minimal required permissions
Monitor access - Log and monitor MCP server usage
๐ Troubleshooting
Common Issues
Connection refused:
Verify Kafka is running
Check
KAFKA_BOOTSTRAP_SERVERSconfigurationEnsure network connectivity
Authentication failures:
Verify SASL credentials
Check SSL certificate paths
Validate security protocol settings
Topic not found:
Ensure topic exists
Check topic name spelling
Verify permissions
Debug Mode
Enable debug logging by setting:
export PYTHONPATH=.
python -c "import logging; logging.basicConfig(level=logging.DEBUG)"
python kafka_mcp_server.py๐ค Contributing
Fork the repository
Create a feature branch:
git checkout -b feature-nameMake your changes
Run tests:
python test_kafka_mcp.pyCommit changes:
git commit -am 'Add feature'Push to branch:
git push origin feature-nameSubmit a pull request
๐ License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
๐ Acknowledgments
Model Context Protocol - For the MCP specification
Apache Kafka - For the distributed streaming platform
kafka-python - For the Python Kafka client
๐ Support
For issues and questions:
Check the troubleshooting section
Run the test suite to validate your setup
Review Kafka and MCP documentation
Open an issue with detailed error information
Happy Kafka streaming with MCP! ๐
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aswinayyolath/kafka-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server