smithery.json•2.73 kB
{
"name": "baas-sms-mcp",
"version": "1.0.9",
"description": "A Model Context Protocol server for SMS and MMS messaging services through BaaS API",
"author": "mBaaS Team <jjunmo@mbaas.kr>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jjunmomo/BaaS-MCP.git"
},
"homepage": "https://github.com/jjunmomo/BaaS-MCP",
"bugs": {
"url": "https://github.com/jjunmomo/BaaS-MCP/issues"
},
"keywords": [
"mcp",
"sms",
"mms",
"messaging",
"model-context-protocol",
"baas",
"notifications",
"authentication",
"verification"
],
"categories": [
"communication",
"api-integration",
"automation"
],
"platforms": [
"darwin",
"linux",
"win32"
],
"engines": {
"node": ">=16.0.0"
},
"mcp": {
"server": {
"name": "baas-sms-mcp",
"version": "0.1.0"
}
},
"installation": {
"npm": {
"package": "baas-sms-mcp",
"command": "npx",
"args": ["baas-sms-mcp"]
}
},
"configuration": {
"env": {
"BAAS_API_KEY": {
"description": "Your BaaS API key for authentication",
"required": true,
"type": "string"
},
"PROJECT_ID": {
"description": "Your project UUID from BaaS dashboard",
"required": true,
"type": "string"
}
}
},
"tools": [
{
"name": "send_sms",
"description": "Send SMS message to one or multiple recipients for user authentication, notifications, or marketing campaigns"
},
{
"name": "send_mms",
"description": "Send MMS message with images to one or multiple recipients for rich media marketing and notifications"
},
{
"name": "get_message_status",
"description": "Get detailed message delivery status and analytics by group ID for monitoring and debugging"
},
{
"name": "get_send_history",
"description": "Get message sending history for a project with filtering options"
}
],
"examples": [
{
"title": "SMS Verification for User Registration",
"description": "Send SMS verification code during user registration process",
"prompt": "Create a React component with SMS verification for user registration"
},
{
"title": "Order Confirmation MMS",
"description": "Send MMS with order details and product image when order is placed",
"prompt": "Send MMS with order details and product image when order is placed"
},
{
"title": "Real-time Status Checking",
"description": "Create a webhook endpoint that checks SMS delivery status",
"prompt": "Create a webhook endpoint that checks SMS delivery status"
}
]
}