|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.resend-mcp", |
| 4 | + "name": "Resend", |
| 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": ["communication"], |
| 10 | + "tags": ["resend", "email", "messaging", "notifications"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "npx", |
| 15 | + "args": ["-y", "resend-mcp"], |
| 16 | + "env": { |
| 17 | + "RESEND_API_KEY": "${input:RESEND_API_KEY}" |
| 18 | + }, |
| 19 | + "metadata": { |
| 20 | + "inputs": [ |
| 21 | + { |
| 22 | + "id": "RESEND_API_KEY", |
| 23 | + "label": "Resend API Key", |
| 24 | + "description": "API key for the Resend email API.", |
| 25 | + "type": "password", |
| 26 | + "required": true, |
| 27 | + "secret": true, |
| 28 | + "placeholder": "re_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx", |
| 29 | + "obtain": { |
| 30 | + "url": "https://resend.com/api-keys", |
| 31 | + "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_)", |
| 32 | + "button_label": "Create API Key" |
| 33 | + } |
| 34 | + } |
| 35 | + ] |
| 36 | + } |
| 37 | + }, |
| 38 | + |
| 39 | + "auth": { |
| 40 | + "type": "api_key", |
| 41 | + "instructions": "Create a Resend API key at https://resend.com/api-keys" |
| 42 | + }, |
| 43 | + |
| 44 | + "contributor": { |
| 45 | + "name": "Resend", |
| 46 | + "github": "resend", |
| 47 | + "url": "https://resend.com" |
| 48 | + }, |
| 49 | + |
| 50 | + "links": { |
| 51 | + "repository": "https://github.com/resend/mcp-send-email", |
| 52 | + "homepage": "https://resend.com", |
| 53 | + "documentation": "https://resend.com/docs/knowledge-base/mcp-server" |
| 54 | + }, |
| 55 | + |
| 56 | + "platforms": ["all"], |
| 57 | + |
| 58 | + "capabilities": { |
| 59 | + "tools": true, |
| 60 | + "resources": false, |
| 61 | + "prompts": false, |
| 62 | + "read_only_mode": false |
| 63 | + } |
| 64 | +} |
0 commit comments