Skip to main content
ClaudeWave

AWS Email, SMS, & CDN, simple.

MCP ServersOfficial Registry58 stars8 forksTypeScriptNOASSERTIONUpdated today
ClaudeWave Trust Score
80/100
Trusted
Passed
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Flags
  • !Licence file present but not machine-readable
Last scanned: 9/11/2026
Install in Claude Code / Claude Desktop
Method: NPX · @wraps.dev/cli
Claude Code CLI
claude mcp add wraps -- npx -y @wraps.dev/cli
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "wraps": {
      "command": "npx",
      "args": ["-y", "@wraps.dev/cli"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
Use cases

MCP Servers overview


<p align="center">
  <kbd>
    <a href="https://wraps.dev">
      <img src="https://wraps.dev/wraps-light-logo.png" alt="Wraps" width="200" />
    </a>
  </kbd>
</p>


<p align="center">
  <strong>Deploy email infrastructure to your AWS account in under 2 minutes.</strong>
</p>

<p align="center">
  <a href="https://www.npmjs.com/package/@wraps.dev/cli"><img src="https://img.shields.io/npm/v/@wraps.dev/cli?label=CLI&color=blue" alt="CLI version" /></a>
  <a href="https://www.npmjs.com/package/@wraps.dev/email"><img src="https://img.shields.io/npm/v/@wraps.dev/email?label=SDK&color=blue" alt="SDK version" /></a>
  <a href="https://github.com/wraps-team/wraps/actions/workflows/test.yml"><img src="https://github.com/wraps-team/wraps/actions/workflows/test.yml/badge.svg" alt="Tests" /></a>
  <a href="https://github.com/wraps-team/wraps/blob/main/LICENSE"><img src="https://img.shields.io/badge/license-AGPL--3.0-green" alt="License" /></a>
  <img src="https://img.shields.io/badge/TypeScript-strict-blue" alt="TypeScript" />
</p>

<!--<p align="center">
  <img src="https://wraps.dev/cli/wraps-cli.gif" alt="Wraps CLI" width="600" />
</p>-->

---

## Quick Start

**Prerequisites:** Node.js 22+, AWS credentials configured

```bash
# Deploy email infrastructure to your AWS account
npx @wraps.dev/cli email init
```

```bash
# Install the SDK
pnpm add @wraps.dev/email
```

```typescript
import { WrapsEmail } from '@wraps.dev/email';

const email = new WrapsEmail();

const { messageId } = await email.send({
  from: 'hello@yourapp.com',
  to: 'user@example.com',
  subject: 'Welcome!',
  html: '<h1>Hello from Wraps!</h1>',
});

console.log('Sent:', messageId);
```

## For AI Agents

Using Claude Code, Cursor, or another AI assistant? Point it at:

- **[wraps.dev/llms-full.txt](https://wraps.dev/llms-full.txt)** — the complete Wraps documentation in one file (quickstarts, SDK reference, CLI reference, guides)
- **[wraps.dev/llms.txt](https://wraps.dev/llms.txt)** — agent-oriented index: when to use Wraps, quick command reference, links to everything
- **Claude Code skills** — installable from [wraps.dev/.well-known/skills/](https://wraps.dev/.well-known/skills/)
- **MCP server** — hosted at `https://wraps.dev/mcp`, or run locally with `npx -y @wraps.dev/mcp` for tools that send email, check setup status, and read event logs ([reference](https://wraps.dev/docs/mcp-reference))

## Why Wraps?

- **You own it** — Infrastructure deploys to your AWS account. Data never leaves your cloud. If we disappeared tomorrow, your email keeps working.
- **2-minute setup** — One CLI command. No AWS console spelunking. No 1000-word sandbox approval essays.
- **AWS pricing** — Pay AWS directly for sending. No middleman markup. Scale affordably.
- **Real DX** — TypeScript SDK, visual templates, real-time analytics, interactive dashboard.

## What Gets Deployed

One command creates all of this in your AWS account:

- **SES** — Domain verification, DKIM, SPF, DMARC
- **EventBridge + SQS** — Real-time event tracking (bounces, opens, clicks, deliveries)
- **DynamoDB** — Email event history with configurable retention
- **Lambda** — Event processing and webhook handling
- **IAM** — Least-privilege roles with OIDC support (Vercel, AWS native)

All resources are namespaced under `wraps-` (most as `wraps-email-*`) and tagged `ManagedBy: wraps-cli`.

## Also Available

| Service | CLI | SDK |
|---------|-----|-----|
| **SMS** (AWS End User Messaging) | `wraps sms init` | [`@wraps.dev/sms`](https://www.npmjs.com/package/@wraps.dev/sms) |
| **CDN** (S3 + CloudFront) | `wraps cdn init` | — |
| **Email (Python)** | — | [`wraps-email`](https://pypi.org/project/wraps-email/) |
| **Platform API client** | — | [`@wraps.dev/client`](https://www.npmjs.com/package/@wraps.dev/client) |
| **MCP server** | — | [`@wraps.dev/mcp`](https://www.npmjs.com/package/@wraps.dev/mcp) |
| **CDK construct** | — | [`@wraps.dev/cdk`](https://www.npmjs.com/package/@wraps.dev/cdk) |
| **Pulumi component** | — | [`@wraps.dev/pulumi`](https://www.npmjs.com/package/@wraps.dev/pulumi) |

## Documentation

| Resource | Link |
|----------|------|
| Quickstart | [wraps.dev/docs/quickstart](https://wraps.dev/docs/quickstart) |
| CLI Reference | [wraps.dev/docs/cli-reference](https://wraps.dev/docs/cli-reference) |
| SDK Reference | [wraps.dev/docs/sdk-reference](https://wraps.dev/docs/sdk-reference) |
| Python SDK Reference | [wraps.dev/docs/python-sdk-reference](https://wraps.dev/docs/python-sdk-reference) |
| MCP Reference | [wraps.dev/docs/mcp-reference](https://wraps.dev/docs/mcp-reference) |
| Guides | [wraps.dev/docs/guides](https://wraps.dev/docs/guides) |
| Infrastructure | [wraps.dev/docs/infrastructure](https://wraps.dev/docs/infrastructure) |
| Complete docs for LLMs | [wraps.dev/llms-full.txt](https://wraps.dev/llms-full.txt) |

## Community

- [GitHub Issues](https://github.com/wraps-team/wraps/issues) — Bug reports and feature requests
- [GitHub Discussions](https://github.com/wraps-team/wraps/discussions) — Questions and ideas
- [Contributing](CONTRIBUTING.md) — Development setup and guidelines

## License

AGPL-3.0 — see [LICENSE](LICENSE) for details. Enterprise features under commercial license. See [wraps.dev](https://wraps.dev) for more information.
awscdncliemailsessmstypescript

What people ask about wraps

What is wraps-team/wraps?

+

wraps-team/wraps is mcp servers for the Claude AI ecosystem. AWS Email, SMS, & CDN, simple. It has 58 GitHub stars and its last recorded update is dated 2026-09-11.

How do I install wraps?

+

You can install wraps by cloning the repository (https://github.com/wraps-team/wraps) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is wraps-team/wraps safe to use?

+

Our security agent has analyzed wraps-team/wraps and assigned a Trust Score of 80/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains wraps-team/wraps?

+

wraps-team/wraps is maintained by wraps-team. The last recorded GitHub activity is dated 2026-09-11, with 3 open issues.

Are there alternatives to wraps?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy wraps to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: wraps-team/wraps
[![Featured on ClaudeWave](https://claudewave.com/api/badge/wraps-team-wraps)](https://claudewave.com/repo/wraps-team-wraps)
<a href="https://claudewave.com/repo/wraps-team-wraps"><img src="https://claudewave.com/api/badge/wraps-team-wraps" alt="Featured on ClaudeWave: wraps-team/wraps" width="320" height="64" /></a>

More MCP Servers

wraps alternatives