package.json•703 B
{
"name": "@yiyang.1i/sms-mcp-server",
"version": "2025.2.24",
"description": "A Model Context Protocol (MCP) server that enables Claude and other AI assistants to send SMS and MMS messages using Twilio.",
"license": "MIT",
"author": "Yiyang Li",
"type": "module",
"bin": {
"sms-mcp-server": "build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && shx chmod +x build/*.js",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.5.0",
"twilio": "^5.4.5",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22",
"shx": "^0.3.4",
"typescript": "^5.3.3"
}
}