33 lines
782 B
JSON

{
"name": "@busybee/twilio-mcp",
"version": "0.1.0",
"description": "The Twilio MCP that doesn't suck — workflow-first tools, lazy loading, and rich MCP Apps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"twilio-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"lint": "eslint src/",
"test": "vitest"
},
"keywords": ["mcp", "twilio", "sms", "voice", "model-context-protocol"],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"twilio": "^5.5.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=18"
}
}