MCP Confluent MCP Server

Confluent MCP Server

Local serverstdio

What is the MCP Confluent MCP server?

Confluent MCP Server. That is what the mcp confluent mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

An open-source MCP server that enables AI assistants to interact with Confluent Cloud, Confluent Platform, and standalone Apache Kafka deployments through natural language. It provides 50+ tools across Kafka, Flink SQL, Schema Registry, Connectors, Tableflow, and more -- usable from any MCP-compatible client including Claude Desktop, Claude Code, Cursor, VS Code, Goose, and Gemini CLI.

The tools it exposes

The server publishes 5 tools. What each one is for:

  • Category — Tools
  • Documentation — search-product-docs, get-product-doc-page
  • Diagnostics — explain-disabled-tools, list-configured-connections, config-help, describe-configured-connection
  • Prerequisites — The Prerequisites tool exposed by this server
  • Setup — The Setup tool exposed by this server

Getting it running

Installation goes through your MCP client rather than a global install: point it at @confluentinc/mcp-confluent on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

What it needs from you

Configuration is passed through the environment: KAFKA_API_KEY, KAFKA_API_SECRET, SCHEMA_REGISTRY_API_KEY, SCHEMA_REGISTRY_API_SECRET. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js 22.19.0 or later -- we recommend using NVM to manage versions: - pnpm -- only needed to build from source (the npx quick start above does not require it). On macOS the simplest install is Homebrew; npm works cross-platform: See pnpm's installation guide for other options. The

How it compares

Plenty of knowledge and memory servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. MCP Confluent's toolset — Category, Documentation, Diagnostics and 2 more — is a fair guide to whether it matches your workflow. It is maintained by confluentinc; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
CategoryTools
Documentationsearch-product-docs, get-product-doc-page
Diagnosticsexplain-disabled-tools, list-configured-connections, config-help, describe-configured-connection
PrerequisitesThe Prerequisites tool exposed by this server.
SetupThe Setup tool exposed by this server.

How to install the MCP Confluent MCP server

{
  "mcpServers": {
    "confluent": {
      "command": "npx",
      "args": ["-y", "@confluentinc/mcp-confluent"],
      "env": {
        "KAFKA_API_KEY": "your-value",
        "KAFKA_API_SECRET": "your-value",
        "SCHEMA_REGISTRY_API_KEY": "your-value",
        "SCHEMA_REGISTRY_API_SECRET": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js 22.19.0 or later -- we recommend using NVM to manage versions: - pnpm -- only needed to build from source (the npx quick start above does not require it). On macOS the simplest install is Homebrew; npm works cross-platform: See pnpm's installation guide for other options. The
VariableDescriptionRequired
KAFKA_API_KEYCredential the server authenticates with.Yes
KAFKA_API_SECRETCredential the server authenticates with.Yes
SCHEMA_REGISTRY_API_KEYCredential the server authenticates with.Yes
SCHEMA_REGISTRY_API_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP Confluent to Category.
  • Use MCP Confluent to Documentation.
  • Use MCP Confluent to Diagnostics.

Frequently asked questions

It connects MCP Confluent to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (Category, Documentation, Diagnostics, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP Confluent directly.