一键导入
resend-cli
Use the Resend CLI to send emails, manage domains, API keys, and audiences from the terminal. Use this instead of the Resend MCP server.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use the Resend CLI to send emails, manage domains, API keys, and audiences from the terminal. Use this instead of the Resend MCP server.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use OpenCLI to turn any website, Electron app, or local tool into a CLI. 50+ adapters for social media, news, finance, and dev tools. Reuses Chrome login sessions with zero credentials. AI-agent ready with structured output.
Use the AWS CLI to manage S3 buckets, Lambda functions, EC2 instances, IAM, DynamoDB, and all AWS services from the terminal. Use this instead of the AWS MCP server.
Use the Azure CLI (az) to manage Azure resources including App Service, Functions, VMs, storage, and databases. Use this instead of the Azure MCP server.
Use Blender from the command line to render 3D scenes, run Python scripts for batch processing, and convert 3D file formats without the GUI.
Use the Docker CLI to build images, run containers, manage volumes, networks, and use Docker Compose for multi-container applications.
Use FFmpeg to convert, process, and manipulate video and audio files from the terminal. Transcode formats, extract audio, create thumbnails, trim clips, and more.
| name | resend-cli |
| description | Use the Resend CLI to send emails, manage domains, API keys, and audiences from the terminal. Use this instead of the Resend MCP server. |
Official CLI for Resend. Send transactional emails, manage domains, API keys, and contacts.
resend login # Browser-based login, creates API key
resend emails send --from "you@yourdomain.com" --to "user@example.com" --subject "Hello" --text "Body text"
resend emails send --from "you@yourdomain.com" --to "user@example.com" --subject "Hello" --html "<h1>Hi</h1>"
resend emails get EMAIL_ID # Get email details
resend domains list # List verified domains
resend domains create --name example.com # Add domain
resend domains verify --id DOMAIN_ID # Check verification status
resend domains delete --id DOMAIN_ID # Remove domain
resend api-keys list # List API keys
resend api-keys create --name "Production"
resend api-keys delete --id KEY_ID
resend audiences list
resend audiences create --name "Newsletter"
resend contacts list --audience-id AUD_ID
resend contacts create --audience-id AUD_ID --email "user@example.com" --first-name "John"
--html for rich emails, --text for plain textresend domains listresend) for programmatic sending in applicationsresend emails send \
--from "test@yourdomain.com" \
--to "you@gmail.com" \
--subject "Test from CLI" \
--text "This is a test email sent from the Resend CLI."
resend domains list
resend domains verify --id DOMAIN_ID