{
  "info": {
    "name": "MailSlurp — mcp.ai",
    "description": "REST API for the MailSlurp 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/mailslurp",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "mailslurp_create_inbox",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/inbox",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "inbox"
          ]
        },
        "description": "Create a MailSlurp HTTP or SMTP inbox. HTTP inboxes are the default and can send and receive; SMTP inboxes are receive-only.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"prefix\": \"\",\n  \"domain_id\": \"\",\n  \"favourite\": false,\n  \"expires_at\": \"\",\n  \"expires_in\": 0,\n  \"inbox_type\": \"\",\n  \"description\": \"\",\n  \"domain_name\": \"\",\n  \"email_address\": \"\",\n  \"virtual_inbox\": false,\n  \"use_domain_pool\": false,\n  \"use_short_address\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mailslurp_delete_inbox",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/inbox",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "inbox"
          ]
        },
        "description": "Permanently delete one MailSlurp inbox by UUID, including its email address and all emails it contains. This destructive action cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"inbox_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mailslurp_get_account_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "info"
          ]
        },
        "description": "Return the connected MailSlurp account identity, state, account type, subscription type, and creation time. Use this to check account availability before attempting quota- or plan-sensitive operations",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mailslurp_get_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "email"
          ]
        },
        "description": "Get one fully hydrated received email by UUID, including parsed headers, body content, recipients, and attachment IDs. Fetching hydrated content may mark the email as read.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mailslurp_get_inbox",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/inbox",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "inbox"
          ]
        },
        "description": "Get one MailSlurp inbox by UUID, including its email address, type, labels, and lifecycle state.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"inbox_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mailslurp_list_contact_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/contact/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "contact",
            "groups"
          ]
        },
        "description": "List saved MailSlurp contact groups with optional creation-time filters. Returns one page and a continuation cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"size\": 0,\n  \"sort\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mailslurp_list_contacts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/contacts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "contacts"
          ]
        },
        "description": "List saved MailSlurp contacts with optional search and creation-time filters. Returns one page and a continuation cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"size\": 0,\n  \"sort\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"search\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mailslurp_list_domains",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/domains",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "domains"
          ]
        },
        "description": "List custom domains configured for the connected MailSlurp account, including identifiers, domain type, and DNS verification state.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mailslurp_list_emails",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/emails",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "emails"
          ]
        },
        "description": "List received emails across the account or one selected inbox with unread, exact-search, favorite, plus-address, and time filters. Returns one page and a continuation cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"size\": 0,\n  \"sort\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"inbox_id\": \"\",\n  \"favourited\": false,\n  \"next_cursor\": \"\",\n  \"unread_only\": false,\n  \"search_filter\": \"\",\n  \"plus_address_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mailslurp_list_inboxes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/inboxes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "inboxes"
          ]
        },
        "description": "List MailSlurp inboxes with optional search, tag, type, domain, favorite, and creation-time filters. Returns one page and a continuation cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"size\": 0,\n  \"sort\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"search\": \"\",\n  \"domain_id\": \"\",\n  \"favourite\": false,\n  \"inbox_type\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mailslurp_list_sent_emails",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/sent/emails",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "sent",
            "emails"
          ]
        },
        "description": "List sent-email records, optionally filtered by source inbox, exact identifier/address search, and creation time. Returns one page and a continuation cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"size\": 0,\n  \"sort\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"inbox_id\": \"\",\n  \"next_cursor\": \"\",\n  \"search_filter\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mailslurp_list_templates",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/templates",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "templates"
          ]
        },
        "description": "List saved MailSlurp email templates with optional creation-time filters. Returns one page and a continuation cursor without large template bodies.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"size\": 0,\n  \"sort\": \"\",\n  \"since\": \"\",\n  \"before\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mailslurp_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 from a specific MailSlurp inbox to addresses, saved contacts, or one contact group. Supports plain text or HTML, uploaded attachment IDs, and saved templates. The legacy endpoint confirm",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cc\": \"\",\n  \"to\": \"\",\n  \"bcc\": \"\",\n  \"body\": \"\",\n  \"is_html\": false,\n  \"subject\": \"\",\n  \"inbox_id\": \"\",\n  \"reply_to\": \"\",\n  \"contact_ids\": \"\",\n  \"template_id\": \"\",\n  \"attachment_ids\": \"\",\n  \"use_inbox_name\": false,\n  \"contact_group_id\": \"\",\n  \"add_tracking_pixel\": false,\n  \"template_variables\": {},\n  \"filter_bounced_recipients\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "mailslurp_update_inbox",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/inbox",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "inbox"
          ]
        },
        "description": "Update an inbox's name, description, tags, expiration, or favorite status. Provide at least one field to update. The inbox email address cannot be changed.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"tags\": \"\",\n  \"inbox_id\": \"\",\n  \"favourite\": false,\n  \"expires_at\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}