create_message_service_template
Generate a fully customized message service template for SMS, MMS, and related features by fetching from CDN and applying project-specific configurations, streamlining new project setup and team standardization.
Instructions
Create a complete message service template by fetching from CDN and customizing with project config
Perfect for: New project setup, team standardization, rapid prototyping
Token-optimized: Fetches base template from CDN then applies project customizations
Args:
project_config: Project configuration {default_callback, company_name, etc.}
language: Target programming language
features: List of features to include ["sms", "mms", "status_check", "history", "validation"]
Returns:
Complete service template with project-specific defaults and configuration
Automatically injects BAAS_API_KEY from MCP server environment if available
Input Schema
Name | Required | Description | Default |
---|---|---|---|
features | No | ||
language | No | javascript | |
project_config | Yes |
Input Schema (JSON Schema)
{
"properties": {
"features": {
"default": null,
"items": {
"type": "string"
},
"title": "Features",
"type": "array"
},
"language": {
"default": "javascript",
"title": "Language",
"type": "string"
},
"project_config": {
"additionalProperties": {
"type": "string"
},
"title": "Project Config",
"type": "object"
}
},
"required": [
"project_config"
],
"title": "create_message_service_templateArguments",
"type": "object"
}