SendGrid MCP Server

{ "name": "sendgrid-mcp", "version": "1.0.0", "description": "Send emails and interact with SendGrid", "private": true, "type": "module", "bin": { "sendgrid-mcp": "./build/index.js" }, "files": [ "build" ], "scripts": { "build": "tsc && chmod +x build/index.js", "prepare": "npm run build", "watch": "tsc --watch", "inspector": "npx @modelcontextprotocol/inspector build/index.js", "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js" }, "dependencies": { "@modelcontextprotocol/sdk": "0.6.0", "@sendgrid/client": "^8.1.4", "@sendgrid/helpers": "^8.0.0", "@sendgrid/mail": "^8.1.4" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^20.11.24", "dotenv": "^16.4.7", "jest": "^29.7.0", "ts-jest": "^29.2.5", "typescript": "^5.3.3" } }