Mascotbot React SDK Documentation
Learn how to install and use the Mascotbot SDK with React.
MascotCall encapsulates the core call-handling logic. It is designed to work in tandem with MascotClient and the underlying voice client from the Pipecat platform. For a general integration of the Mascotbot React SDK, see the Mascotbot React SDK Documentation.
Overview
The MascotCall
component enables you to provide real-time call interaction features in your application. It offers you:
- A call “start” mechanism that connects to the backend via an API endpoint.
- A control interface exposing start/end call and toggle audio (mute/unmute) buttons.
- Integrated TTS support—for example, using the ElevenLabs engine.
- Full integration with a Rive animation for your mascot via the
MascotRive
component.
Internally, MascotCall
uses the Pipecat voice client alongside media handling and state management hooks from @mascotbot-sdk/react
.
Installation
First, ensure you have installed the Mascotbot React SDK along with its peer dependencies:
For full installation and setup details, please see the Mascotbot React SDK Docs.
Usage
MascotCall
works as a child of the MascotClient
component and must be wrapped in a valid client context. The typical integration flow is as follows:
-
Load Your Mascot Animation:
Create and load your Rive instance using theuseRive
hook (from@rive-app/react-canvas
). -
Wrap with MascotClient:
Pass your Rive instance and any custom state-machine input names (e.g."thumbs_up"
) toMascotClient
. -
Integrate MascotCall:
Within theMascotClient
, add theMascotCall
component. Provide your API endpoint and TTS configuration (if needed) as props. Use the render prop function to access call controls and state.
Props
The MascotCall
component accepts the following props:
-
apiUrl (string, required):
The URL of your backend API endpoint that handles call signaling. -
tts (object, optional):
Configures Text-To-Speech (TTS) with the following properties:engine
(string): The TTS engine (e.g."elevenlabs"
,"cartesia"
, or"kokoro"
).voice
(string): The identifier for the selected voice.
-
onStateChange (function, optional):
Callback that is invoked on transport state changes (e.g."disconnected"
,"connecting"
,"ready"
). -
children (function or React node, required):
A render prop that provides the control props:startProps
: Props to trigger a start call action.endProps
: Props to trigger the call-end action.muteProps
: Props to toggle mute/unmute.state
: The current transport state.muted
: Boolean indicating if the mic is muted.
TTS Configuration
Within the tts
prop you can define the TTS engine and voice settings. For example:
You can adjust these settings based on your subscription and the supported providers on your backend.
Code Example
Below is a complete integration example for MascotCall
. This example shows how to set up your Rive instance, wrap your app with MascotClient
, and integrate the MascotCall
component with a custom UI using its render prop.
With this setup, your application will be equipped with interactive voice call features integrated alongside your Mascot’s animation and TTS capabilities.
For more details and advanced configuration options, consult the Mascotbot React SDK documentation and the relevant source files in the repository.