{
  "info": {
    "name": "ManyReach — mcp.ai",
    "description": "REST API for the ManyReach 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/manyreach",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "manyreach_create_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "campaign"
          ]
        },
        "description": "Create and save a new draft campaign's configuration. This tool is draft-only: it does not start, pause, archive, or otherwise activate outreach, and it never sends email.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"subject\": \"\",\n  \"body_html\": \"\",\n  \"folder_id\": 0,\n  \"from_name\": \"\",\n  \"daily_limit\": 0,\n  \"description\": \"\",\n  \"track_opens\": false,\n  \"track_clicks\": false,\n  \"sender_emails\": \"\",\n  \"reply_to_email\": \"\",\n  \"daily_limit_per\": \"\",\n  \"schedule_sending\": false,\n  \"text_only_emails\": false,\n  \"delay_min_minutes\": 0,\n  \"schedule_time_zone\": \"\",\n  \"use_prospects_time_zone\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_create_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "list"
          ]
        },
        "description": "Create a ManyReach mailing list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"folder_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_create_prospect",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/prospect",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "prospect"
          ]
        },
        "description": "Create one ManyReach prospect. sending_active controls whether the prospect is eligible for campaign sending and safely defaults to false. This tool only saves the prospect; it does not start a campai",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"email\": \"\",\n  \"notes\": \"\",\n  \"phone\": \"\",\n  \"state\": \"\",\n  \"domain\": \"\",\n  \"company\": \"\",\n  \"country\": \"\",\n  \"website\": \"\",\n  \"industry\": \"\",\n  \"location\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"icebreaker\": \"\",\n  \"base_list_id\": 0,\n  \"company_size\": \"\",\n  \"job_position\": \"\",\n  \"custom_fields\": {},\n  \"company_social\": \"\",\n  \"sending_active\": false,\n  \"sending_status\": \"\",\n  \"personal_social\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_create_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "tag"
          ]
        },
        "description": "Create a CRM, campaign, or sender tag.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"tag_type\": \"\",\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_delete_outreach_resource",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/outreach/resource",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "outreach",
            "resource"
          ]
        },
        "description": "Permanently and irreversibly delete exactly one campaign, prospect, mailing list, or tag by ID. This cannot be undone. The tool rejects the request unless confirm_deletion=true after explicit caller c",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"resource_id\": 0,\n  \"resource_type\": \"\",\n  \"confirm_deletion\": false,\n  \"force_tag_delete\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_get_account_overview",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/overview",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "overview"
          ]
        },
        "description": "Return the authenticated ManyReach organization together with its sending-credit and data-token balances.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_list_campaigns",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/campaigns",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "campaigns"
          ]
        },
        "description": "Find campaigns in the authenticated organization, optionally filtering by lifecycle status or archived state. Returns one page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"status\": \"\",\n  \"include_archived\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_list_lists",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/lists",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "lists"
          ]
        },
        "description": "Return one page of mailing lists available for organizing and importing prospects.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_list_messages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/messages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "messages"
          ]
        },
        "description": "Retrieve one read-only page of reply, sent, or manually sent messages with campaign, followup, sender, CRM-status, address, and subject filters. This action does not reply to or send messages.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"subject\": \"\",\n  \"email_to\": \"\",\n  \"sender_id\": 0,\n  \"email_from\": \"\",\n  \"campaign_id\": 0,\n  \"followup_id\": 0,\n  \"message_type\": \"\",\n  \"confirmed_status\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_list_prospects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/prospects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "prospects"
          ]
        },
        "description": "Search and filter prospects by identity, CRM status, tags, campaign membership, and existing email-validation verdict. Returns one page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tags\": \"\",\n  \"email\": \"\",\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"search\": \"\",\n  \"status\": \"\",\n  \"validation_status\": \"\",\n  \"exclude_campaign_ids\": \"\",\n  \"include_campaign_ids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_list_senders",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/senders",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "senders"
          ]
        },
        "description": "Find configured sender mailboxes by folder, connection status, warmup state, or search text. Returns one page without exposing mailbox credentials.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"folder\": \"\",\n  \"search\": \"\",\n  \"status\": \"\",\n  \"warmup\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_list_tags",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/tags",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "tags"
          ]
        },
        "description": "Find CRM, campaign, or sender tags and optionally include prospect counts. Returns one page at a time.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"cursor\": \"\",\n  \"search\": \"\",\n  \"tag_type\": \"\",\n  \"include_prospect_count\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_update_campaign",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/campaign",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "campaign"
          ]
        },
        "description": "Update an existing draft campaign's configuration. This tool is draft-only: it does not start, pause, archive, or otherwise activate outreach, and it never sends email.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"subject\": \"\",\n  \"body_html\": \"\",\n  \"folder_id\": 0,\n  \"from_name\": \"\",\n  \"campaign_id\": 0,\n  \"daily_limit\": 0,\n  \"description\": \"\",\n  \"track_opens\": false,\n  \"track_clicks\": false,\n  \"sender_emails\": \"\",\n  \"reply_to_email\": \"\",\n  \"daily_limit_per\": \"\",\n  \"schedule_sending\": false,\n  \"text_only_emails\": false,\n  \"delay_min_minutes\": 0,\n  \"schedule_time_zone\": \"\",\n  \"use_prospects_time_zone\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_update_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "list"
          ]
        },
        "description": "Rename or move an existing ManyReach mailing list.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"list_id\": 0,\n  \"folder_id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_update_prospect",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/prospect",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "prospect"
          ]
        },
        "description": "Update contact, personalization, list, CRM, or campaign-sending eligibility fields for one ManyReach prospect by ID. The prospect email cannot be changed. This tool does not send email.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"city\": \"\",\n  \"notes\": \"\",\n  \"phone\": \"\",\n  \"state\": \"\",\n  \"domain\": \"\",\n  \"company\": \"\",\n  \"country\": \"\",\n  \"website\": \"\",\n  \"industry\": \"\",\n  \"location\": \"\",\n  \"last_name\": \"\",\n  \"first_name\": \"\",\n  \"icebreaker\": \"\",\n  \"prospect_id\": 0,\n  \"base_list_id\": 0,\n  \"company_size\": \"\",\n  \"job_position\": \"\",\n  \"custom_fields\": {},\n  \"company_social\": \"\",\n  \"sending_active\": false,\n  \"sending_status\": \"\",\n  \"personal_social\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "manyreach_update_tag",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/tag",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "tag"
          ]
        },
        "description": "Update an existing tag's title and description. A tag's resource class cannot be changed after creation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"title\": \"\",\n  \"tag_id\": 0,\n  \"description\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}