MCP Remote Client (early access)
MCP (Model Context Protocol) client, operating on temporary remote connections. Only supports tool operations.
Required inputs
| Key | Label | Type |
|---|---|---|
data.connection.sseUrl | SSE URL | 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.remoteclient.v0", {
"data.connection.sseUrl": "= ...",
"data.operation.method": "= =toolCall.method",
"data.tools.included": "= ...",
"data.tools.excluded": "= ...",
})