Loading...
Loading...
Confluent integration. Manage data, records, and automate workflows. Use when the user wants to interact with Confluent data.
npx skill4agent add membranedev/application-skills confluentmembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search confluent --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| List Topics | list-topics | Return the list of topics that belong to the specified Kafka cluster. |
| List Clusters | list-clusters | Return a list of known Kafka clusters. |
| List Consumer Groups | list-consumer-groups | Return the list of consumer groups that belong to the specified Kafka cluster. |
| List Brokers | list-brokers | Return the list of brokers that belong to the specified Kafka cluster. |
| List Partitions | list-partitions | Return the list of partitions that belong to the specified topic. |
| List ACLs | list-acls | Return a list of ACLs (Access Control Lists) for the specified Kafka cluster. |
| Get Topic | get-topic | Return the topic with the given topic_name from the specified Kafka cluster. |
| Get Cluster | get-cluster | Return the Kafka cluster with the specified cluster_id. |
| Get Consumer Group | get-consumer-group | Return the consumer group specified by the consumer_group_id. |
| Get Broker | get-broker | Return the broker with the given broker_id for the specified Kafka cluster. |
| Get Partition | get-partition | Return the partition with the given partition_id for the specified topic. |
| Create Topic | create-topic | Create a topic in the specified Kafka cluster. |
| Create ACL | create-acl | Create an ACL (Access Control List) for the specified Kafka cluster. |
| Update Topic Config | update-topic-config | Update a single configuration parameter for the specified topic. |
| Delete Topic | delete-topic | Delete the topic with the given topic_name from the specified Kafka cluster. |
| Delete ACLs | delete-acls | Delete ACLs (Access Control Lists) that match the specified criteria for the given Kafka cluster. |
| Produce Record | produce-record | Produce a record to the given topic. |
| List Topic Configs | list-topic-configs | Return the list of configuration parameters that belong to the specified topic. |
| Update Topic Partition Count | update-topic-partition-count | Update the number of partitions for a topic in the specified Kafka cluster. |
| List Partition Offsets | list-partition-offsets | Return the offsets for a specific partition of a topic, including earliest and latest offsets. |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY