Skip to content

Commit 692e1bc

Browse files
authored
feat: add Resend MCP server definition (#70)
* Add Resend MCP server definition Resend MCP server for sending emails with plain text, HTML, attachments, and scheduling. Uses resend-mcp npm package with stdio transport. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx * fix: update server definition (input type 'password' -> 'text' for RESEND_API_KEY; repo URL fixed) * fix: rename server files with transport suffix - com.resend-mcp.json -> com.resend-mcp-npx.json (id: com.resend-mcp-npx) Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> --------- Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent d4ee573 commit 692e1bc

1 file changed

Lines changed: 70 additions & 0 deletions

File tree

servers/com.resend-mcp-npx.json

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.resend-mcp-npx",
4+
"name": "Resend (npx)",
5+
"alias": "resend",
6+
"description": "Send emails using the Resend API. Supports plain text and HTML content, attachments, scheduling, and recipient management.",
7+
"icon": "https://avatars.githubusercontent.com/u/109384852?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"communication"
11+
],
12+
"tags": [
13+
"resend",
14+
"email",
15+
"messaging",
16+
"notifications"
17+
],
18+
"transport": {
19+
"type": "stdio",
20+
"command": "npx",
21+
"args": [
22+
"-y",
23+
"resend-mcp"
24+
],
25+
"env": {
26+
"RESEND_API_KEY": "${input:RESEND_API_KEY}"
27+
},
28+
"metadata": {
29+
"inputs": [
30+
{
31+
"id": "RESEND_API_KEY",
32+
"label": "Resend API Key",
33+
"description": "API key for the Resend email API.",
34+
"type": "text",
35+
"required": true,
36+
"secret": true,
37+
"placeholder": "re_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
38+
"obtain": {
39+
"url": "https://resend.com/api-keys",
40+
"instructions": "1. Go to resend.com/api-keys\n2. Click 'Create API Key'\n3. Select 'Sending access' permission\n4. Copy the key (starts with re_)",
41+
"button_label": "Create API Key"
42+
}
43+
}
44+
]
45+
}
46+
},
47+
"auth": {
48+
"type": "api_key",
49+
"instructions": "Create a Resend API key at https://resend.com/api-keys"
50+
},
51+
"contributor": {
52+
"name": "Resend",
53+
"github": "resend",
54+
"url": "https://resend.com"
55+
},
56+
"links": {
57+
"repository": "https://github.com/resend/resend-mcp",
58+
"homepage": "https://resend.com",
59+
"documentation": "https://resend.com/docs/knowledge-base/mcp-server"
60+
},
61+
"platforms": [
62+
"all"
63+
],
64+
"capabilities": {
65+
"tools": true,
66+
"resources": false,
67+
"prompts": false,
68+
"read_only_mode": false
69+
}
70+
}

0 commit comments

Comments
 (0)