@sequenzy/mcp 0.0.42 → 0.0.43
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.
- package/dist/index.js +13 -13
- package/dist/runtime.js +2 -0
- package/dist/server.js +174 -0
- package/package.json +4 -2
- package/server.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sequenzy/mcp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.43",
|
|
4
4
|
"mcpName": "io.github.sequenzy/mcp",
|
|
5
5
|
"description": "Sequenzy MCP server for AI-powered email marketing automation",
|
|
6
6
|
"type": "module",
|
|
@@ -10,11 +10,13 @@
|
|
|
10
10
|
"main": "./dist/index.js",
|
|
11
11
|
"exports": {
|
|
12
12
|
".": "./dist/index.js",
|
|
13
|
+
"./server": "./dist/server.js",
|
|
14
|
+
"./runtime": "./dist/runtime.js",
|
|
13
15
|
"./server.json": "./server.json"
|
|
14
16
|
},
|
|
15
17
|
"scripts": {
|
|
16
18
|
"dev": "bun --watch src/index.ts",
|
|
17
|
-
"build": "bun build src/index.ts --outdir dist --target node --minify",
|
|
19
|
+
"build": "bun build src/index.ts src/server.ts src/runtime.ts --outdir dist --target node --minify",
|
|
18
20
|
"start": "node dist/index.js",
|
|
19
21
|
"type-check": "tsc --noEmit",
|
|
20
22
|
"test": "bun test",
|
package/server.json
CHANGED
|
@@ -6,12 +6,12 @@
|
|
|
6
6
|
"url": "https://github.com/Sequenzy/mcp",
|
|
7
7
|
"source": "github"
|
|
8
8
|
},
|
|
9
|
-
"version": "0.0.
|
|
9
|
+
"version": "0.0.43",
|
|
10
10
|
"packages": [
|
|
11
11
|
{
|
|
12
12
|
"registryType": "npm",
|
|
13
13
|
"identifier": "@sequenzy/mcp",
|
|
14
|
-
"version": "0.0.
|
|
14
|
+
"version": "0.0.43",
|
|
15
15
|
"runtime": "node",
|
|
16
16
|
"transport": {
|
|
17
17
|
"type": "stdio"
|