@sequenzy/mcp 0.0.5 → 0.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/dist/index.js +19 -13
  2. package/package.json +12 -7
  3. package/server.json +30 -0
package/package.json CHANGED
@@ -1,15 +1,16 @@
1
1
  {
2
2
  "name": "@sequenzy/mcp",
3
- "version": "0.0.5",
3
+ "version": "0.0.7",
4
+ "mcpName": "io.github.polnikale/sequenzy-mcp",
4
5
  "description": "Sequenzy MCP server for AI-powered email marketing automation",
5
6
  "type": "module",
6
7
  "bin": {
7
- "sequenzy-mcp": "./dist/index.js"
8
+ "sequenzy-mcp": "dist/index.js"
8
9
  },
9
- "main": "./src/index.ts",
10
- "types": "./src/index.ts",
10
+ "main": "./dist/index.js",
11
11
  "exports": {
12
- ".": "./src/index.ts"
12
+ ".": "./dist/index.js",
13
+ "./server.json": "./server.json"
13
14
  },
14
15
  "scripts": {
15
16
  "dev": "bun --watch src/index.ts",
@@ -30,7 +31,8 @@
30
31
  "typescript": "^5.8.0"
31
32
  },
32
33
  "files": [
33
- "dist"
34
+ "dist",
35
+ "server.json"
34
36
  ],
35
37
  "keywords": [
36
38
  "sequenzy",
@@ -41,8 +43,11 @@
41
43
  "automation"
42
44
  ],
43
45
  "license": "MIT",
46
+ "publishConfig": {
47
+ "access": "public"
48
+ },
44
49
  "repository": {
45
50
  "type": "git",
46
- "url": "https://github.com/sequenzy/sequenzy"
51
+ "url": "git+https://github.com/sequenzy/sequenzy.git"
47
52
  }
48
53
  }
package/server.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "sequenzy",
4
+ "description": "Sequenzy MCP server for AI-powered email marketing automation. Manage subscribers, send emails, create campaigns and sequences with AI.",
5
+ "repository": {
6
+ "url": "https://github.com/sequenzy/sequenzy",
7
+ "source": "github",
8
+ "subfolder": "packages/mcp"
9
+ },
10
+ "version": "0.0.7",
11
+ "packages": [
12
+ {
13
+ "registryType": "npm",
14
+ "identifier": "@sequenzy/mcp",
15
+ "version": "0.0.7",
16
+ "runtime": "node",
17
+ "transport": {
18
+ "type": "stdio"
19
+ },
20
+ "environmentVariables": [
21
+ {
22
+ "name": "SEQUENZY_API_KEY",
23
+ "description": "Your Sequenzy API key (get one from the Sequenzy dashboard under Settings > API Keys)",
24
+ "isRequired": true,
25
+ "isSecret": true
26
+ }
27
+ ]
28
+ }
29
+ ]
30
+ }