39 lines
907 B
JSON
39 lines
907 B
JSON
{
|
|
"name": "@mcpengine/constant-contact-server",
|
|
"version": "1.0.0",
|
|
"description": "MCP server for Constant Contact API v3 - marketing automation, campaigns, contacts, and analytics",
|
|
"type": "module",
|
|
"main": "dist/main.js",
|
|
"bin": {
|
|
"constant-contact-mcp": "./dist/main.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && chmod +x dist/main.js",
|
|
"dev": "tsc --watch",
|
|
"start": "node dist/main.js",
|
|
"prepare": "npm run build",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"constant-contact",
|
|
"email-marketing",
|
|
"marketing-automation",
|
|
"mcp-server"
|
|
],
|
|
"author": "MCP Engine",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.4",
|
|
"axios": "^1.7.9",
|
|
"dotenv": "^16.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.5",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
}
|