create_template
ActiveTool of FavCRM
Create and submit a WhatsApp message template to Meta for approval. Text templates only (header text, body with {{1}} variables, footer) — add buttons in the app. The template is NOT usable until Meta approves it (check with list_templates). Submitting consumes the store’s Meta template allowance.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"name",
"category",
"message"
],
"properties": {
"name": {
"type": "string",
"minLength": 1,
"description": "Friendly template name (a Meta-safe id is derived from it)."
},
"footer": {
"type": "string",
"description": "Optional small footer text."
},
"message": {
"type": "string",
"minLength": 1,
"description": "Body text. Use {{1}}, {{2}} for personalised values."
},
"category": {
"enum": [
"MARKETING",
"UTILITY",
"AUTHENTICATION"
],
"type": "string",
"description": "UTILITY = transactional (order/shipping), MARKETING = promos, AUTHENTICATION = codes."
},
"language": {
"type": "string",
"description": "Language code, default en_US."
},
"headerText": {
"type": "string",
"description": "Optional short bold header above the body."
},
"variableSamples": {
"type": "object",
"description": "Example values per variable number, e.g. {\"1\":\"Sara\"} — Meta reviews with these.",
"propertyNames": {
"type": "string"
},
"additionalProperties": {
"type": "string"
}
}
}
}Parent server
FavCRM
https://github.com/favcrm/mcp
1/7 registries