mcp-resend 1.0.0-5 → 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.
Files changed (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -10,11 +10,11 @@ Run immediately without installation:
10
10
  # Using npx (Node.js)
11
11
  npx mcp-resend
12
12
 
13
- # Using Nix flakes (with binary cache)
14
- nix run flakehub:gui-wf/mcp-resend
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 source)
17
- nix run github:gui-wf/mcp-resend
16
+ # Using Nix flakes (from GitHub)
17
+ nix run github:gui-wf/resend-mcp-server
18
18
  ```
19
19
 
20
20
  Requires `RESEND_API_KEY` environment variable. Get yours from [Resend Dashboard](https://resend.com/api-keys).
@@ -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/mcp-resend", "--refresh"],
57
+ "args": ["run", "github:gui-wf/resend-mcp-server", "--refresh"],
58
58
  "env": {
59
59
  "RESEND_API_KEY": "re_your_api_key_here"
60
60
  }
@@ -74,8 +74,8 @@ npm install -g mcp-resend
74
74
  ### From Source
75
75
 
76
76
  ```bash
77
- git clone https://github.com/gui-wf/mcp-resend.git
78
- cd mcp-resend
77
+ git clone https://github.com/gui-wf/resend-mcp-server.git
78
+ cd resend-mcp-server
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/mcp-resend/dist/index.js"],
90
+ "args": ["/path/to/resend-mcp-server/dist/index.js"],
91
91
  "env": {
92
92
  "RESEND_API_KEY": "re_your_api_key_here"
93
93
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-resend",
3
- "version": "1.0.0-5",
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"