Hostinger OpenClaw VPS
configure_chatbot
LAST step after deploy + assignment (Plus/Pro). ONLY real facts in the knowledge — never invented prices/hours/addresses. Enables/configures the chatbot on a deployed project; the widget is injected server-side, no HTML changes. Partial update, except `knowledge` REPLACES the whole text — editing an existing bot? get_chatbot first. Point contactFormUrl at the site's Dplooy Form URL when one exists.
Remote dplooyinc/hosting
Remote (network-hosted)
Other tools also called configure_chatbot?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Widget title, e.g. \"GreenScape Assistant\" (max 100 chars)"
},
"enabled": {
"type": "boolean",
"description": "Turn the chatbot on (true) or off (false). Omit to leave its current state unchanged"
},
"position": {
"enum": [
"bottom-right",
"bottom-left"
],
"type": "string",
"description": "Which corner the widget sits in"
},
"knowledge": {
"type": "string",
"description": "The knowledge base (max 50,000 chars). Structure as sections: About / Services & Prices / Hours / Service Area / FAQ / Contact. Only facts the user or site actually provided."
},
"projectId": {
"type": "string",
"description": "The deployed project's ID"
},
"themeColor": {
"type": "string",
"description": "Hex color like \"#0d9488\" — match the site's accent"
},
"personality": {
"enum": [
"professional",
"friendly",
"casual",
"enthusiastic",
"concise"
],
"type": "string",
"description": "The bot's tone of voice — match the site's audience"
},
"contactFormUrl": {
"type": "string",
"description": "Where the bot sends visitors it can't help — use the site's Dplooy Form URL"
},
"welcomeMessage": {
"type": "string",
"description": "The bot's opening line (max 500 chars)"
},
"starterQuestions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Up to 3 suggested first questions (100 chars each)"
}
}
}