Kafka MCP Server
A comprehensive MCP server for Apache Kafka operations, enabling seamless integration with Claude Desktop and other MCP clients for cluster management, topic operations, and message streaming.
README
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-server -
Create a virtual environment:
python -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate -
Install dependencies:
pip install mcp kafka-python -
Configure 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.pem
Docker Setup (Optional)
Start a local Kafka cluster using Docker:
docker-compose up -d
This 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.py
The 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.py
Claude 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 examples - Use 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_SERVERSconfiguration - Ensure 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-name - Make your changes
- Run tests:
python test_kafka_mcp.py - Commit changes:
git commit -am 'Add feature' - Push to branch:
git push origin feature-name - Submit 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! ๐
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.