MCP Server Policy

RESEND MCP POLICY

Enforce policies on every tool call to the Resend MCP Server. 42 tools listed, categorised, and ready for rules.

resend-mcp 22 read 20 write 42 tools total
resend email messaging transactional-email

GET STARTED

Download this policy scaffold and add your rules. Intercept enforces them on every tool call before it reaches Resend.

terminal

# Download policy scaffold

curl -o resend.yaml https://raw.githubusercontent.com/policylayer/intercept/main/policies/resend.yaml

# Run with Intercept

intercept --policy resend.yaml -- npx -y @resend-mcp

Server documentation: https://github.com/resend/resend-mcp

READ TOOLS

22

WRITE TOOLS

17

DESTRUCTIVE TOOLS

5

POLICY YAML

This scaffold lists every tool with empty rules. Add conditions — rate limits, argument validation, deny rules — then deploy with Intercept.

resend.yaml
version: "1"
description: "Policy for resend-mcp"
default: "allow"
tools:
    list-emails:
        rules: []
    get-email:
        rules: []
    list-received-emails:
        rules: []
    get-received-email:
        rules: []
    list-received-email-attachments:
        rules: []
    get-received-email-attachment:
        rules: []
    list-sent-email-attachments:
        rules: []
    get-sent-email-attachment:
        rules: []
    list-contacts:
        rules: []
    get-contact:
        rules: []
    list-contact-properties:
        rules: []
    get-contact-property:
        rules: []
    list-broadcasts:
        rules: []
    get-broadcast:
        rules: []
    list-domains:
        rules: []
    list-segments:
        rules: []
    get-segment:
        rules: []
    list-topics:
        rules: []
    get-topic:
        rules: []
    list-api-keys:
        rules: []
    list-webhooks:
        rules: []
    get-webhook:
        rules: []
    send-email:
        rules: []
    send-batch-emails:
        rules: []
    update-email:
        rules: []
    cancel-email:
        rules: []
    create-contact:
        rules: []
    update-contact:
        rules: []
    create-contact-property:
        rules: []
    update-contact-property:
        rules: []
    create-broadcast:
        rules: []
    send-broadcast:
        rules: []
    create-domain:
        rules: []
    create-segment:
        rules: []
    create-topic:
        rules: []
    update-topic:
        rules: []
    create-api-key:
        rules: []
    create-webhook:
        rules: []
    update-webhook:
        rules: []
    remove-contact:
        rules: []
    remove-broadcast:
        rules: []
    remove-segment:
        rules: []
    remove-topic:
        rules: []
    remove-api-key:
        rules: []

RELATED POLICIES

FREQUENTLY ASKED QUESTIONS

What tools does the Resend MCP server expose?

The Resend MCP Server exposes 42 tools across 3 categories: Read, Write, Destructive. Each tool can be individually controlled with Intercept policies.

How do I enforce policies on Resend?

Download the policy scaffold, add rules (rate limits, argument validation, deny rules), then run Intercept as a proxy in front of the Resend MCP server. Every tool call is evaluated against your YAML policy before execution.

Is the Resend policy free to use?

Yes. All Intercept policies are open source under the Apache 2.0 licence. Download, modify, and deploy without restrictions.

ENFORCE POLICIES ON RESEND

Open source. One binary. Zero dependencies.