- Greenhouse: 29 tools (was 18), added interviews, scorecards, organization - Lever: 26 tools (was 13), added tags, sources, expanded opportunities/postings - Loom: 25 tools (was 14), added analytics, privacy, search, workspace members All servers now have: - main.ts with env validation & graceful shutdown - server.ts with lazy-loaded tool modules - Zod validation on all inputs - Rich tool descriptions (when/why to use) - Pagination support on all list_* tools - Updated package.json (bin field, updated deps) - Updated README with coverage manifests - Old index.ts renamed to index.ts.bak - Zero TypeScript errors (npx tsc --noEmit verified)
36 lines
873 B
JSON
36 lines
873 B
JSON
{
|
|
"name": "@mcpengine/twilio",
|
|
"version": "1.0.0",
|
|
"description": "Complete Twilio MCP server — SMS, voice, verify, conversations, lookups",
|
|
"main": "dist/main.js",
|
|
"types": "dist/main.d.ts",
|
|
"type": "module",
|
|
"bin": {
|
|
"@mcpengine/twilio": "dist/main.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"start": "node dist/main.js",
|
|
"dev": "tsx watch src/main.ts",
|
|
"watch": "tsc --watch",
|
|
"lint": "eslint src/",
|
|
"test": "vitest"
|
|
},
|
|
"keywords": ["mcp", "twilio", "sms", "voice", "verify", "conversations", "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",
|
|
"tsx": "^4.19.0",
|
|
"vitest": "^3.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|