@relayrail/server 0.1.0
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/README.md +74 -0
- package/dist/index.d.ts +507 -0
- package/dist/index.js +2213 -0
- package/package.json +77 -0
package/package.json
ADDED
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@relayrail/server",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "RelayRail MCP Server - SMS/Email connectivity for AI agents",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"relayrail": "./dist/index.js",
|
|
10
|
+
"relayrail-server": "./dist/index.js"
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js",
|
|
16
|
+
"default": "./dist/index.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist",
|
|
21
|
+
"README.md"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "tsx watch src/index.ts",
|
|
25
|
+
"build": "tsup",
|
|
26
|
+
"build:tsc": "tsc",
|
|
27
|
+
"start": "node dist/index.js",
|
|
28
|
+
"test": "vitest",
|
|
29
|
+
"typecheck": "tsc --noEmit",
|
|
30
|
+
"clean": "rm -rf dist",
|
|
31
|
+
"prepublishOnly": "npm run build"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"mcp",
|
|
35
|
+
"model-context-protocol",
|
|
36
|
+
"ai",
|
|
37
|
+
"agents",
|
|
38
|
+
"sms",
|
|
39
|
+
"email",
|
|
40
|
+
"notifications",
|
|
41
|
+
"human-in-the-loop",
|
|
42
|
+
"claude",
|
|
43
|
+
"anthropic"
|
|
44
|
+
],
|
|
45
|
+
"author": "RelayRail",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"repository": {
|
|
48
|
+
"type": "git",
|
|
49
|
+
"url": "https://github.com/relayrail/relayrail.git",
|
|
50
|
+
"directory": "packages/mcp-server"
|
|
51
|
+
},
|
|
52
|
+
"homepage": "https://relayrail.dev",
|
|
53
|
+
"bugs": {
|
|
54
|
+
"url": "https://github.com/relayrail/relayrail/issues"
|
|
55
|
+
},
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": ">=18.0.0"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
61
|
+
"@supabase/supabase-js": "^2.39.0",
|
|
62
|
+
"html-entities": "^2.6.0",
|
|
63
|
+
"nanoid": "^5.0.0",
|
|
64
|
+
"resend": "^4.0.0",
|
|
65
|
+
"telnyx": "^4.5.1",
|
|
66
|
+
"zod": "^3.22.0"
|
|
67
|
+
},
|
|
68
|
+
"devDependencies": {
|
|
69
|
+
"@relayrail/database": "workspace:*",
|
|
70
|
+
"@relayrail/shared": "workspace:*",
|
|
71
|
+
"@types/node": "^20.10.0",
|
|
72
|
+
"tsup": "^8.5.1",
|
|
73
|
+
"tsx": "^4.7.0",
|
|
74
|
+
"typescript": "^5.3.0",
|
|
75
|
+
"vitest": "^2.0.0"
|
|
76
|
+
}
|
|
77
|
+
}
|