package.json•1.75 kB
{
"name": "@deshartman/twilio-messaging-mcp-server",
"version": "0.2.0",
"description": "Twilio Messaging MCP Server example with Tools, Resources and Prompts. Includes callback handling",
"main": "build/index.js",
"type": "module",
"types": "build/index.d.ts",
"bin": {
"twilio-messaging-mcp-server": "./build/index.js"
},
"files": [
"build/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CONTRIBUTING.md",
"CODE_OF_CONDUCT.md"
],
"scripts": {
"build": "tsc && chmod +x build/index.js",
"start": "node build/index.js",
"dev": "ts-node index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build"
},
"keywords": [
"twilio",
"sms",
"messaging",
"mcp",
"model-context-protocol",
"claude",
"llm",
"ai"
],
"author": "Des Hartman",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deshartman/twilio-messaging-mcp-server"
},
"homepage": "https://github.com/deshartman/twilio-messaging-mcp-server#readme",
"bugs": {
"url": "https://github.com/deshartman/twilio-messaging-mcp-server/issues"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@deshartman/mcp-status-callback": "^0.5.0",
"@modelcontextprotocol/sdk": "^1.7.0",
"events": "^3.3.0",
"twilio": "^4.19.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/twilio": "^3.19.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}