Envloped
Send transactional email, verify domains, build contact segments, and draft marketing campaigns.
Open source Repository Open in the app JSON README (API)
About
Send transactional email, verify domains, build contact segments, and draft marketing campaigns.
Details
- Kind
- MCP servers
- Topic
- Marketing & analytics
- Publisher
- com.envloped
- Origin
- official
- Category
- ferramentas
- Transport
- http
- Version
- 1.3.0+a461eb4
- Last push
- 2026-08-24T06:49:59Z
- Repository state
- ativo
- Added
- 2026-08-29 03:01:06
- Updated
- 2026-08-29 03:01:06
- Origin id
com.envloped/mcp
README
# Envloped CLI
The official command-line interface for [Envloped](https://envloped.com) — the email platform for developers and AI agents.
## Install
```bash
curl -fsSL https://envloped.com/install.sh | bash
```
Or download binaries directly from [Releases](https://github.com/envloped/cli/releases).
### Supported Platforms
| OS | Architecture |
|---|---|
| Linux | amd64, arm64 |
| macOS | amd64, arm64 (Apple Silicon) |
| Windows | amd64 |
## Quick Start
```bash
# Authenticate
envloped login
# Send an email
envloped send --from hello@yourdomain.com --to user@example.com \
--subject "Hello!" --text "Sent from the CLI"
# List sent emails
envloped emails list
# Manage domains
envloped domains list
envloped domains add mydomain.com
# Manage API keys
envloped keys list
envloped keys create "My Key"
```
## CI/CD
Use environment variables for non-interactive authentication:
```bash
export ENVLOPED_API_KEY=en_your_api_key
envloped send --from a@b.com --to c@d.com --subject "Deploy" --text "Done"
```
### GitHub Actions
```yaml
- name: Install Envloped CLI
run: curl -fsSL https://envloped.com/install.sh | bash
- name: Send notification
env:
ENVLOPED_API_KEY: ${{ secrets.ENVLOPED_API_KEY }}
run: envloped send --from a@b.com --to c@d.com --subject "Deployed" --text "OK"
```
## AI Agent Support
The CLI is designed for autonomous use by AI agents (Claude Code, Cursor, Codex):
- `--json` flag on every command for machine-readable output
- `--stdin` for piping JSON email payloads
- `--force` to skip confirmation prompts
- `--quiet` for minimal output
See [`install.md`](https://github.com/envloped/cli/blob/main/install.md) for agent installation instructions.
## Documentation
- [Getting Started](https://envloped.com/docs/cli)
- [Command Reference](https://envloped.com/docs/cli/commands)
- [CI/CD Integration](https://envloped.com/docs/cli/ci-cd)
## License
Proprietary. Copyright Envloped.