The build process:
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionresend-integration-skillsExecute the skills CLI command in your project's root directory to begin installation:
Fetches resend-integration-skills from gocallum/nextjs16-agent-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate resend-integration-skills. Access via /resend-integration-skills in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
19
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
19
stars
engines: { "node": ">=20" })# Clone the Resend MCP server repository
git clone https://github.com/resend/mcp-send-email.git
cd mcp-send-email
# Install dependencies (npm or pnpm both supported)
npm install
# or if you prefer pnpm:
# pnpm install
# Build the project (TypeScript compilation + executable permissions)
npm run build
The build process:
build/index.jsTo send emails from a custom domain:
--sender flag (see Configuration section)Choose your setup based on your GitHub Copilot tier:
For GitHub Copilot Coding Agent (Repository-level setup):
This is the recommended approach for team collaboration. Repository admins configure MCP servers at the repository level.
{
"mcpServers": {
"resend": {
"type": "local",
"command": "node",
"args": ["/absolute/path/to/mcp-send-email/build/index.js"],
"env": {
"RESEND_API_KEY": "COPILOT_MCP_RESEND_API_KEY"
},
"tools": ["*"]
}
}
}
Set up the Copilot environment:
copilotCOPILOT_MCP_RESEND_API_KEY with your API key valueClick Save and Copilot will validate the configuration
For VS Code Local Development (Developer setup):
If you're developing locally or prefer VS Code configuration:
.vscode/mcp.json in your project root:{
"servers": {
"resend": {
"type": "command",
"command": "node",
"args": ["/absolute/path/to/mcp-send-email/build/index.js"],
"env": {
"RESEND_API_KEY": "re_xxxxxxxxxxxxxx"
}
}
}
}
build/index.js:
build/index.js in VS Code → Copy PathFor Cursor Agent Mode:
Open Cursor Settings (Cmd+Shift+P → "Cursor Settings") and add to MCP config:
{
"mcpServers": {
"resend": {
"type": "command",
"command": "node /absolute/path/to/mcp-send-email/build/index.js --key=re_xxxxxxxxxxxxxx"
}
}
}
For Claude Desktop:
{
"mcpServers": {
"resend": {
"command": "node",
"args": ["/absolute/path/to/mcp-send-email/build/index.js"],
"env": {
"RESEND_API_KEY": "re_xxxxxxxxxxxxxx",
"SENDER_EMAIL_ADDRESS": "[email protected]",
"REPLY_TO_EMAIL_ADDRESS": "[email protected]"
}
}
}
}
The official Resend repository includes a test pattern using an email.md file:
Create email.md in your project:
to: [email protected]
subject: Test from Resend MCP
content: This is a test email.
Hello! This is a test email sent via Resend MCP.
# You can also test CC and BCC:
# cc: [email protected]
# bcc: [email protected]
In Cursor (with Agent mode):
email.md fileCmd+A / Ctrl+A)Cmd+L / Ctrl+L (or use the context menu)In Claude Desktop:
In GitHub Copilot:
If configured correctly, the email will be sent immediately and you'll receive confirmation.
There are two main ways to configure Resend MCP with GitHub Copilot:
1. GitHub Copilot Coding Agent (Repository-level)
tools array specifying which tools Copilot can useCOPILOT_MCP_)2. VS Code Local Development
.vscode/mcp.json (local developer setup)The Resend MCP Server is a local Node.js application that exposes Resend's email functionality as tools for LLMs. It implements the Model Context Protocol, allowing AI agents to:
Recent additions (as of early 2026):
There are three ways to run the Resend MCP server:
For GitHub Copilot Coding Agent (repository-based setup):
Required tools array: Must specify which tools from the Resend MCP server Copilot can use
"tools": ["send_email", "schedule_email", ...] to allowlist specific tools"tools": ["*"] to enable all toolsNo approval required: Once configured, Copilot will use these tools autonomously without asking
Security consideration: Copilot will have automated access to the Resend API via the configured tools, so only enable the tools you need
Environment variable handling: API keys must be stored as GitHub Actions secrets with COPILOT_MCP_ prefix
"COPILOT_MCP_RESEND_API_KEY" (without the value)Resend MCP server requires:
By default, Resend allows sending to your own account email using the test domain [email protected]. To send to other addresses:
[email protected] sender (no verification needed)SENDER_EMAIL_ADDRESS)Note: If you don't provide a SENDER_EMAIL_ADDRESS, the MCP server will prompt you each time you send an email.
In VS Code Insider with GitHub Copilot Agent mode:
@workspace I need to send a notification email to [email protected] about the project completion. Use the resend MCP tool to send "Project ABC is now live" as the email body.
Send an HTML email to [email protected] with subject "Monthly Report" and body formatted as an HTML table showing Q1 metrics. Use Resend MCP to send it.
Send an email from [email protected] to [email protected] CC'ing [email protected] about account activation. Use Resend MCP.
Schedule an email to be sent tomorrow at 9 AM using Resend MCP, reminding the team about the standup meeting.
Read the CSV file users.csv, extract the top 10 active users with their emails, and send each a personalized thank you email using Resend MCP. Include their usage statistics in the email.
Send emails to audience segments in your Resend account:
Send a broadcast email to my 'premium_users' audience with subject 'New Feature Release' using Resend MCP
Query and work with audiences:
List all my audiences in Resend using the MCP tool
Important: When configuring Resend MCP for GitHub Copilot Coding Agent:
Tool allowlisting - Only enable the specific tools Copilot needs:
"tools": ["send_email", "schedule_email"]
Instead of enabling all tools with "*"
Secret management - Never commit API keys to version control
COPILOT_MCP_Scope your API key - Consider using a restricted Resend API key if available
Review Copilot's actions - Check pull requests created by Copilot to verify emails would be sent appropriately
Environment isolation - Use the copilot environment to manage which repositories/workflows have access to your email sending capability
Use .env.local for development:
# .env.local (not committed)
RESEND_API_KEY=re_test_xxx
SENDER_EMAIL_ADDRESS=[email protected]
Separate configs per environment:
Document required env vars in README.md:
## Environment Variables
- RESEND_API_KEY: Resend API key (required)
- SENDER_EMAIL_ADDRESS: VerMake data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
JuliusBrussee/caveman
JuliusBrussee/caveman
whyashthakker/agent-skills-marketing
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
resend-integration-skills fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Useful defaults in resend-integration-skills — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
resend-integration-skills is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
resend-integration-skills has been reliable in day-to-day use. Documentation quality is above average for community skills.
Keeps context tight: resend-integration-skills is the kind of skill you can hand to a new teammate without a long onboarding doc.
Solid pick for teams standardizing on skills: resend-integration-skills is focused, and the summary matches what you get after install.
Solid pick for teams standardizing on skills: resend-integration-skills is focused, and the summary matches what you get after install.
I recommend resend-integration-skills for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
resend-integration-skills reduced setup friction for our internal harness; good balance of opinion and flexibility.
resend-integration-skills fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 38