ethora-app-update
Modify application details for the logged-in user, including display name, domain, description, color, and bot status, directly within the Ethora MCP Server platform.
Instructions
Updates the application fields for the logged-in user who has created the app.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appDescription | No | Set the application description | |
appId | Yes | appId for app | |
botStatus | Yes | Set the bot status to on or off, if on bot is enabled | |
displayName | No | displayName of the application | |
domainName | No | If the domainName is set to 'abcd', your web application will be available at abcd.ethora.com. | |
primaryColor | No | Set thie color of the application in #F54927 format |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"appDescription": {
"description": "Set the application description",
"type": "string"
},
"appId": {
"description": "appId for app",
"type": "string"
},
"botStatus": {
"description": "Set the bot status to on or off, if on bot is enabled",
"enum": [
"on",
"off"
],
"type": "string"
},
"displayName": {
"description": "displayName of the application",
"type": "string"
},
"domainName": {
"description": "If the domainName is set to 'abcd', your web application will be available at abcd.ethora.com.",
"type": "string"
},
"primaryColor": {
"description": "Set thie color of the application in #F54927 format",
"type": "string"
}
},
"required": [
"appId",
"botStatus"
],
"type": "object"
}