We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mustafa-boorenie/twilio_sms_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"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",
"start:mcp": "node build/index.js",
"start:web": "node build/web-server.js",
"dev:web": "tsc && node build/web-server.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.5.0",
"twilio": "^5.4.5",
"zod": "^3.24.2",
"express": "^4.18.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^22",
"@types/express": "^4.17.21",
"@types/cors": "^2.8.17",
"shx": "^0.3.4",
"typescript": "^5.3.3"
}
}