From 3f1d6465174624ba7a32fcb62159c637c8b2576b Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 12:54:23 +0000 Subject: [PATCH 1/3] 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 --- servers/com.resend-mcp.json | 64 +++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 servers/com.resend-mcp.json diff --git a/servers/com.resend-mcp.json b/servers/com.resend-mcp.json new file mode 100644 index 0000000..12cbfbd --- /dev/null +++ b/servers/com.resend-mcp.json @@ -0,0 +1,64 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.resend-mcp", + "name": "Resend", + "alias": "resend", + "description": "Send emails using the Resend API. Supports plain text and HTML content, attachments, scheduling, and recipient management.", + "icon": "https://avatars.githubusercontent.com/u/109384852?v=4", + "schema_version": "2.1", + "categories": ["communication"], + "tags": ["resend", "email", "messaging", "notifications"], + + "transport": { + "type": "stdio", + "command": "npx", + "args": ["-y", "resend-mcp"], + "env": { + "RESEND_API_KEY": "${input:RESEND_API_KEY}" + }, + "metadata": { + "inputs": [ + { + "id": "RESEND_API_KEY", + "label": "Resend API Key", + "description": "API key for the Resend email API.", + "type": "password", + "required": true, + "secret": true, + "placeholder": "re_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", + "obtain": { + "url": "https://resend.com/api-keys", + "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_)", + "button_label": "Create API Key" + } + } + ] + } + }, + + "auth": { + "type": "api_key", + "instructions": "Create a Resend API key at https://resend.com/api-keys" + }, + + "contributor": { + "name": "Resend", + "github": "resend", + "url": "https://resend.com" + }, + + "links": { + "repository": "https://github.com/resend/mcp-send-email", + "homepage": "https://resend.com", + "documentation": "https://resend.com/docs/knowledge-base/mcp-server" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From f613606d785bc9fec51cb7db3a752ae02e496749 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:10:46 +0800 Subject: [PATCH 2/3] fix: update server definition (input type 'password' -> 'text' for RESEND_API_KEY; repo URL fixed) --- servers/com.resend-mcp.json | 30 ++++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/servers/com.resend-mcp.json b/servers/com.resend-mcp.json index 12cbfbd..00c7f1d 100644 --- a/servers/com.resend-mcp.json +++ b/servers/com.resend-mcp.json @@ -6,13 +6,22 @@ "description": "Send emails using the Resend API. Supports plain text and HTML content, attachments, scheduling, and recipient management.", "icon": "https://avatars.githubusercontent.com/u/109384852?v=4", "schema_version": "2.1", - "categories": ["communication"], - "tags": ["resend", "email", "messaging", "notifications"], - + "categories": [ + "communication" + ], + "tags": [ + "resend", + "email", + "messaging", + "notifications" + ], "transport": { "type": "stdio", "command": "npx", - "args": ["-y", "resend-mcp"], + "args": [ + "-y", + "resend-mcp" + ], "env": { "RESEND_API_KEY": "${input:RESEND_API_KEY}" }, @@ -22,7 +31,7 @@ "id": "RESEND_API_KEY", "label": "Resend API Key", "description": "API key for the Resend email API.", - "type": "password", + "type": "text", "required": true, "secret": true, "placeholder": "re_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", @@ -35,26 +44,23 @@ ] } }, - "auth": { "type": "api_key", "instructions": "Create a Resend API key at https://resend.com/api-keys" }, - "contributor": { "name": "Resend", "github": "resend", "url": "https://resend.com" }, - "links": { - "repository": "https://github.com/resend/mcp-send-email", + "repository": "https://github.com/resend/resend-mcp", "homepage": "https://resend.com", "documentation": "https://resend.com/docs/knowledge-base/mcp-server" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 734ddfd9adfa0ae01317fb2b609982b28bea2e0f Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 22:45:50 +0800 Subject: [PATCH 3/3] 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 --- servers/{com.resend-mcp.json => com.resend-mcp-npx.json} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename servers/{com.resend-mcp.json => com.resend-mcp-npx.json} (97%) diff --git a/servers/com.resend-mcp.json b/servers/com.resend-mcp-npx.json similarity index 97% rename from servers/com.resend-mcp.json rename to servers/com.resend-mcp-npx.json index 00c7f1d..f49c42e 100644 --- a/servers/com.resend-mcp.json +++ b/servers/com.resend-mcp-npx.json @@ -1,7 +1,7 @@ { "$schema": "../schemas/server-definition.schema.json", - "id": "com.resend-mcp", - "name": "Resend", + "id": "com.resend-mcp-npx", + "name": "Resend (npx)", "alias": "resend", "description": "Send emails using the Resend API. Supports plain text and HTML content, attachments, scheduling, and recipient management.", "icon": "https://avatars.githubusercontent.com/u/109384852?v=4",