Confluent MCP Server

DevOpsstdio
Repositorio

Confluent's open-source MCP server that connects AI assistants to Confluent Cloud, Confluent Platform, and standalone Apache Kafka deployments. Provides tools to manage Kafka topics and connectors, work with Schema Registry, and run Flink SQL statements through natural language, helping teams operate streaming data platforms from an MCP client.

Conectar

Añade esta configuración a .claude/mcp.json

{
  "mcpServers": {
    "confluent": {
      "command": "npx",
      "args": [
        "-y",
        "@confluentinc/mcp-confluent",
        "-e",
        ".env"
      ],
      "env": {
        "BOOTSTRAP_SERVERS": "<YOUR_BOOTSTRAP_SERVERS>",
        "KAFKA_API_KEY": "<YOUR_KAFKA_API_KEY>",
        "KAFKA_API_SECRET": "<YOUR_KAFKA_API_SECRET>"
      }
    }
  }
}

Herramientas (3)

list_topics

List Kafka topics in the connected Confluent or Kafka cluster.

{
  "type": "object",
  "properties": {}
}

create_topic

Create a new Kafka topic with the given partitions and configuration.

{
  "type": "object",
  "required": [
    "topic_name"
  ],
  "properties": {
    "partitions": {
      "type": "integer",
      "description": "Number of partitions"
    },
    "topic_name": {
      "type": "string",
      "description": "Name of the topic to create"
    }
  }
}

produce_message

Produce a message to a Kafka topic.

{
  "type": "object",
  "required": [
    "topic_name",
    "value"
  ],
  "properties": {
    "value": {
      "type": "string",
      "description": "Message payload"
    },
    "topic_name": {
      "type": "string",
      "description": "Target topic"
    }
  }
}

Recursos

Este servidor no expone ningún recurso.

Prompts

Este servidor no expone ningún prompt.

Información del servidor

Autor
Confluent (@confluentinc)
Repositorio
https://github.com/confluentinc/mcp-confluent
Estrellas
0
Última actualización
12 de julio de 2026