Skip to content

Commit 5629544

Browse files
committed
fix: update server definition (input type 'password' -> 'text' for RESEND_API_KEY; repo URL fixed)
1 parent c7a9807 commit 5629544

1 file changed

Lines changed: 18 additions & 12 deletions

File tree

servers/com.resend-mcp.json

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,22 @@
66
"description": "Send emails using the Resend API. Supports plain text and HTML content, attachments, scheduling, and recipient management.",
77
"icon": "https://avatars.githubusercontent.com/u/109384852?v=4",
88
"schema_version": "2.1",
9-
"categories": ["communication"],
10-
"tags": ["resend", "email", "messaging", "notifications"],
11-
9+
"categories": [
10+
"communication"
11+
],
12+
"tags": [
13+
"resend",
14+
"email",
15+
"messaging",
16+
"notifications"
17+
],
1218
"transport": {
1319
"type": "stdio",
1420
"command": "npx",
15-
"args": ["-y", "resend-mcp"],
21+
"args": [
22+
"-y",
23+
"resend-mcp"
24+
],
1625
"env": {
1726
"RESEND_API_KEY": "${input:RESEND_API_KEY}"
1827
},
@@ -22,7 +31,7 @@
2231
"id": "RESEND_API_KEY",
2332
"label": "Resend API Key",
2433
"description": "API key for the Resend email API.",
25-
"type": "password",
34+
"type": "text",
2635
"required": true,
2736
"secret": true,
2837
"placeholder": "re_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
@@ -35,26 +44,23 @@
3544
]
3645
}
3746
},
38-
3947
"auth": {
4048
"type": "api_key",
4149
"instructions": "Create a Resend API key at https://resend.com/api-keys"
4250
},
43-
4451
"contributor": {
4552
"name": "Resend",
4653
"github": "resend",
4754
"url": "https://resend.com"
4855
},
49-
5056
"links": {
51-
"repository": "https://github.com/resend/mcp-send-email",
57+
"repository": "https://github.com/resend/resend-mcp",
5258
"homepage": "https://resend.com",
5359
"documentation": "https://resend.com/docs/knowledge-base/mcp-server"
5460
},
55-
56-
"platforms": ["all"],
57-
61+
"platforms": [
62+
"all"
63+
],
5864
"capabilities": {
5965
"tools": true,
6066
"resources": false,

0 commit comments

Comments
 (0)