# 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:

```json
"mcp": {
  "servers": {
    "Kafka UI": {
      "type": "sse",
      "url": "http://hostname:8080/mcp/sse"
    }
  }
}
```

2. Open the co-pilot chat window and switch to agent mode.

### Claude

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

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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://ui.docs.kafbat.io/faq/mcp.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
