mcp-resend 1.0.0-1 → 1.0.0-5
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 +9 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,13 +8,13 @@ Run immediately without installation:
|
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
10
|
# Using npx (Node.js)
|
|
11
|
-
npx
|
|
11
|
+
npx mcp-resend
|
|
12
12
|
|
|
13
13
|
# Using Nix flakes (with binary cache)
|
|
14
|
-
nix run flakehub:gui-wf/
|
|
14
|
+
nix run flakehub:gui-wf/mcp-resend
|
|
15
15
|
|
|
16
16
|
# Using Nix flakes (from source)
|
|
17
|
-
nix run github:gui-wf/
|
|
17
|
+
nix run github:gui-wf/mcp-resend
|
|
18
18
|
```
|
|
19
19
|
|
|
20
20
|
Requires `RESEND_API_KEY` environment variable. Get yours from [Resend Dashboard](https://resend.com/api-keys).
|
|
@@ -38,7 +38,7 @@ Add the following to your Claude Desktop configuration file:
|
|
|
38
38
|
"mcpServers": {
|
|
39
39
|
"resend": {
|
|
40
40
|
"command": "npx",
|
|
41
|
-
"args": ["
|
|
41
|
+
"args": ["mcp-resend"],
|
|
42
42
|
"env": {
|
|
43
43
|
"RESEND_API_KEY": "re_your_api_key_here"
|
|
44
44
|
}
|
|
@@ -54,7 +54,7 @@ Add the following to your Claude Desktop configuration file:
|
|
|
54
54
|
"mcpServers": {
|
|
55
55
|
"resend": {
|
|
56
56
|
"command": "nix",
|
|
57
|
-
"args": ["run", "github:gui-wf/
|
|
57
|
+
"args": ["run", "github:gui-wf/mcp-resend", "--refresh"],
|
|
58
58
|
"env": {
|
|
59
59
|
"RESEND_API_KEY": "re_your_api_key_here"
|
|
60
60
|
}
|
|
@@ -68,14 +68,14 @@ Add the following to your Claude Desktop configuration file:
|
|
|
68
68
|
### npm (Global)
|
|
69
69
|
|
|
70
70
|
```bash
|
|
71
|
-
npm install -g
|
|
71
|
+
npm install -g mcp-resend
|
|
72
72
|
```
|
|
73
73
|
|
|
74
74
|
### From Source
|
|
75
75
|
|
|
76
76
|
```bash
|
|
77
|
-
git clone https://github.com/gui-wf/
|
|
78
|
-
cd
|
|
77
|
+
git clone https://github.com/gui-wf/mcp-resend.git
|
|
78
|
+
cd mcp-resend
|
|
79
79
|
npm install
|
|
80
80
|
npm run build
|
|
81
81
|
```
|
|
@@ -87,7 +87,7 @@ Then configure Claude Desktop with:
|
|
|
87
87
|
"mcpServers": {
|
|
88
88
|
"resend": {
|
|
89
89
|
"command": "node",
|
|
90
|
-
"args": ["/path/to/
|
|
90
|
+
"args": ["/path/to/mcp-resend/dist/index.js"],
|
|
91
91
|
"env": {
|
|
92
92
|
"RESEND_API_KEY": "re_your_api_key_here"
|
|
93
93
|
}
|
package/package.json
CHANGED