Skip to content

MuleSoft-AI-Chain-Project/mule-agentforce-connector

Repository files navigation

Mule4 Agentforce Connector

Agentforce Connector provides a way to interact with the Bots API of the Salesforce platform and benefit from the agent related capabilities. It allows you to:

  • Start Agent Conversation
  • Continue Agent Conversation
  • End Agent Conversation

Requirements

  • The maximum supported version for Java SDK is JDK 17. You can use JDK 17 only for running your application.
  • Compilation with Java SDK must be done with JDK 8.

Installation

To use this connector, add the following dependency to your application's pom.xml:

	<dependency>
		<groupId>com.mulesoft.connectors</groupId>
		<artifactId>mule4-agentforce-connector</artifactId>
		<version>1.0.0-SNAPSHOT</version>
		<classifier>mule-plugin</classifier>		
	</dependency>

Installation (Open Source Version)

Maven Central

Maven central dependency

    <dependency>
       <groupId>io.github.mulesoft-ai-chain-project</groupId>
       <artifactId>mule4-agentforce-connector</artifactId>
       <version>{version}</version>
       <classifier>mule-plugin</classifier>
    </dependency>

Build and install locally

To use this connector, first build and install the connector into your local maven repository. Then add the following dependency to your application's pom.xml:

    <dependency>
        <groupId>com.mulesoft.connectors</groupId>
        <artifactId>mule4-agentforce-connector</artifactId>
        <version>{version}</version>
        <classifier>mule-plugin</classifier>
    </dependency>

Private Anypoint Exchange

You can also make this connector available as an asset in your Anypoint Exchange.

This process will require you to build the connector as above, but additionally you will need to make some changes to the pom.xml. For this reason, we recommend you fork the repository.

Then, follow the MuleSoft documentation to modify and publish the asset.

Documentation


Stay tuned!