package.json•2.34 kB
{
"name": "instantly-mcp",
"version": "1.1.0",
"description": "Multi-transport MCP server for Instantly.ai with stdio, SSE, and DXT support. Features bulletproof pagination, one-click installation, and comprehensive email automation tools.",
"keywords": [
"mcp",
"instantly",
"api",
"email",
"automation",
"sse",
"dxt",
"claude",
"cursor"
],
"license": "MIT",
"author": "bcharleson",
"repository": {
"type": "git",
"url": "git+https://github.com/bcharleson/Instantly-MCP.git"
},
"bugs": {
"url": "https://github.com/bcharleson/Instantly-MCP/issues"
},
"homepage": "https://github.com/bcharleson/Instantly-MCP#readme",
"type": "module",
"bin": "dist/index.js",
"main": "dist/index.js",
"files": [
"dist",
"manifest.json",
"icon.png",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"start:stdio": "node dist/index.js",
"start:http": "TRANSPORT_MODE=http node dist/index.js",
"start:n8n": "TRANSPORT_MODE=http node dist/index.js",
"start:production": "node dist/index.js",
"publish:beta": "npm run build && npm publish --tag beta",
"prepublishOnly": "npm run build",
"check-tools": "tsx check-tools.ts",
"test:local": "node dist/index.js",
"test:n8n": "curl -X POST http://localhost:3000/health",
"test:http": "node test-http-auth.js",
"verify:parity": "npm run build && node verify-tool-parity.js",
"deploy:digitalocean": "./deploy-digitalocean.sh",
"deploy:railway": "railway up",
"test:railway": "echo 'Replace with your Railway URL' && curl https://your-app.railway.app/health",
"test:timezones": "node scripts/test-timezones.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1",
"cors": "^2.8.5",
"express": "^4.21.2",
"node-fetch": "^3.3.2",
"zod": "^3.25.0"
},
"devDependencies": {
"@babel/parser": "^7.27.5",
"@babel/traverse": "^7.27.4",
"@babel/types": "^7.27.6",
"@types/babel__traverse": "^7.20.7",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^20.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"dxt": {
"compatible": true,
"version": "0.1"
}
}