MCP Client (early access)
MCP (Model Context Protocol) client using MCP connections configured on the connector runtime. Only supports tool operations.
Required inputs
| Key | Label | Type |
|---|---|---|
data.client.clientId | Client ID | FEEL expression |
data.operation.method | Method | FEEL expression |
Optional inputs
| Key | Label | Type |
|---|---|---|
data.tools.included | Included tools | FEEL expression |
data.tools.excluded | Excluded tools | FEEL expression |
data.operation.params | Parameters | FEEL expression |
resultVariable | Result variable | string |
resultExpression | Result expression | FEEL expression |
errorExpression | Error expression | FEEL expression |
retryCount | Retries | FEEL expression |
retryBackoff | Retry backoff | string |
Apply this connector with @bpmnkit/connectors
import { applyConnectorTemplate } from "@bpmnkit/connectors"
const result = applyConnectorTemplate("io.camunda.connectors.agenticai.mcp.client.v0", {
"data.client.clientId": "= ...",
"data.operation.method": "= =toolCall.method",
"data.tools.included": "= ...",
"data.tools.excluded": "= ...",
})