mcp-resend 1.0.0-1 → 1.0.1
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 +6 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -8,12 +8,12 @@ Run immediately without installation:
|
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
10
|
# Using npx (Node.js)
|
|
11
|
-
npx
|
|
11
|
+
npx mcp-resend
|
|
12
12
|
|
|
13
|
-
# Using Nix flakes (with binary cache)
|
|
14
|
-
nix run flakehub
|
|
13
|
+
# Using Nix flakes (with binary cache from FlakeHub)
|
|
14
|
+
nix run "https://flakehub.com/f/gui-wf/resend-mcp-server/*"
|
|
15
15
|
|
|
16
|
-
# Using Nix flakes (from
|
|
16
|
+
# Using Nix flakes (from GitHub)
|
|
17
17
|
nix run github:gui-wf/resend-mcp-server
|
|
18
18
|
```
|
|
19
19
|
|
|
@@ -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
|
}
|
|
@@ -68,7 +68,7 @@ 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
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mcp-resend",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Comprehensive MCP Server for Resend API - manage emails, domains, templates, contacts, and more via AI assistants",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"license": "Apache-2.0",
|
|
49
49
|
"repository": {
|
|
50
50
|
"type": "git",
|
|
51
|
-
"url": "https://github.com/gui-wf/resend-mcp-server.git"
|
|
51
|
+
"url": "git+https://github.com/gui-wf/resend-mcp-server.git"
|
|
52
52
|
},
|
|
53
53
|
"bugs": {
|
|
54
54
|
"url": "https://github.com/gui-wf/resend-mcp-server/issues"
|