{
  "info": {
    "name": "Resend — mcp.ai",
    "description": "REST API for the Resend MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/resend",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "resend_cancel_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/cancel/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "cancel",
            "email"
          ]
        },
        "description": "Cancel a scheduled email.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_create_audience",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/audience",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "audience"
          ]
        },
        "description": "Create a list of contacts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_create_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "contact"
          ]
        },
        "description": "Create a contact in resend.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"lastName\": \"\",\n  \"firstName\": \"\",\n  \"audienceId\": \"\",\n  \"unsubscribed\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_create_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "domain"
          ]
        },
        "description": "Create a domain through the resend email api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"region\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_delete_audience",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/audience",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "audience"
          ]
        },
        "description": "Remove an existing audience.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"audience_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_delete_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "contact"
          ]
        },
        "description": "Delete a contact in resend.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"email\": \"\",\n  \"audienceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_delete_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "domain"
          ]
        },
        "description": "Delete a domain through the resend email api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_list_audiences",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/audiences",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "audiences"
          ]
        },
        "description": "List all audiences.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_list_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "contacts"
          ]
        },
        "description": "List contacts in resend.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"audienceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_list_domains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/domains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "domains"
          ]
        },
        "description": "List all domains.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_retrieve_audience",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/audience",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "audience"
          ]
        },
        "description": "Retrieve a single audience.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"audience_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_retrieve_contact",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/contact",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "contact"
          ]
        },
        "description": "Retrieve a contact in resend.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"audienceId\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_retrieve_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "domain"
          ]
        },
        "description": "Retrieve a single domain.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_retrieve_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "email"
          ]
        },
        "description": "Retrieve a single email.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_send_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "email"
          ]
        },
        "description": "Send an email using resend.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cc\": \"\",\n  \"to\": \"\",\n  \"bcc\": \"\",\n  \"from\": \"\",\n  \"html\": \"\",\n  \"text\": \"\",\n  \"react\": \"\",\n  \"headers\": {},\n  \"subject\": \"\",\n  \"reply_to\": \"\",\n  \"scheduled_at\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_update_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "domain"
          ]
        },
        "description": "Update an existing domain.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tls\": \"\",\n  \"domain_id\": \"\",\n  \"open_tracking\": false,\n  \"click_tracking\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_update_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "email"
          ]
        },
        "description": "Update a scheduled email.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"scheduled_at\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "resend_verify_domain",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/verify/domain",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "verify",
            "domain"
          ]
        },
        "description": "Verify a domain through the resend email api.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"domain_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}