-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "@activecampaign/postmark-mcp",
"version": "1.0.0",
"description": "Official Postmark MCP server for sending emails via Claude and AI assistants",
"keywords": ["postmark", "activecampaign", "email", "mcp", "model-context-protocol", "claude", "cursor", "ai"],
"author": "Jabal Torres",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/activecampaign/postmark-mcp.git"
},
"bugs": {
"url": "https://github.com/activecampaign/postmark-mcp/issues"
},
"homepage": "https://github.com/activecampaign/postmark-mcp#readme",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"files": [
"index.js",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node index.js",
"inspector": "npx @modelcontextprotocol/inspector index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"dotenv": "^16.4.5",
"node-fetch": "^3.3.2",
"postmark": "^4.0.5",
"zod": "^3.23.8"
},
"publishConfig": {
"access": "public"
}
}