kafbat UI
GithubDiscord
  • 🎓Overview
    • About
    • Features
    • Getting started
  • 🛣️Project
    • Code of Conduct
    • Roadmap
  • 🧱Development
    • 🤝🏻Contributing
    • Setting up git
    • Building
      • Prerequisites
      • With Docker
      • Without Docker
    • WIP: Testing
  • ⚡Quick Start
    • 🔍Prerequisites
      • Kafka Permissions
        • Standalone Kafka ACLs
        • MSK (+Serverless) Setup
    • Demo run
    • AWS Marketplace
    • Persisting config
    • K8s / Helm
  • 🛠️Configuration
    • Configuration wizard
    • Configuration file
    • Setup example configs
    • Helm charts
      • Quick start
      • Configuration
        • SSL example
      • Resource limits
      • Sticky sessions
    • Misc configuration properties
    • Complex configuration examples
      • Kraft mode + multiple brokers
    • Kafka secured with SSL
    • Authentication
      • For the UI
        • Basic Authentication
        • OAuth2
        • LDAP / Active Directory
        • SSO Guide (Deprecated)
      • For Kafka
        • AWS IAM
        • SASL_SCRAM
    • RBAC (Role based access control)
      • Supported Identity Providers
    • Data masking
    • Audit log
    • Serialization / SerDe
    • OpenDataDiscovery Integration
  • ❓FAQ
    • Common problems
    • MCP Server
    • FAQ
    • Authentication Issues
Powered by GitBook
On this page
  • Visual Studio Code
  • Cluade

Was this helpful?

Edit on GitHub
Export as PDF
  1. FAQ

MCP Server

To enable the MCP server functionality, set the mcp.enabled flag to true.

Once enabled, you can connect to the Kafbat UI instance using an MCP client at the following SSE endpoint:http://hostname/mcp/sse.

Visual Studio Code

To configure MCP in VS Code:

  1. Add the MCP server to your settings:

"mcp": {
  "servers": {
    "Kafka UI": {
      "type": "sse",
      "url": "http://hostname:8080/mcp/sse"
    }
  }
}
  1. Open the co-pilot chat window and switch to agent mode.

Cluade

Cluade supports remote MCP servers only with an Enterprise subscription. For basic usage, configure a mcp-remote proxy:

{
  "mcpServers": {
    "kafka": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "http://localhost:8080/mcp/sse",
        "--transport sse-only",
        "--allow-http"
      ]
    }
  }
}
PreviousCommon problemsNextFAQ

Last updated 2 days ago

Was this helpful?

❓