{
  "info": {
    "name": "Push by Techulus — mcp.ai",
    "description": "REST API for the Push by Techulus 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/push_by_techulus",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "push_by_techulus_delete_team_member_or_invite",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/team/member/or/invite",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "team",
            "member",
            "or",
            "invite"
          ]
        },
        "description": "Tool to remove a user from the team or revoke a pending invitation. Use when you need to revoke team access or cancel an invite for a specific email address.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "push_by_techulus_invite_user_to_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/invite/user/to/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "invite",
            "user",
            "to",
            "team"
          ]
        },
        "description": "Tool to invite a user to a team by sending an email invitation. Use when you need to add a new member to an existing team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team\": \"\",\n  \"email\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "push_by_techulus_send_notification_async",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/notification/async",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "notification",
            "async"
          ]
        },
        "description": "Tool to send push notification asynchronously to all devices in an account or team. Use when you have more than 10 devices for better performance.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"link\": \"\",\n  \"image\": \"\",\n  \"sound\": \"\",\n  \"title\": \"\",\n  \"channel\": \"\",\n  \"timeSensitive\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "push_by_techulus_send_notification_sync",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/notification/sync",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "notification",
            "sync"
          ]
        },
        "description": "Tool to send push notifications synchronously to all linked devices. Use when you need immediate confirmation of notification delivery to all devices or teams.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"link\": \"\",\n  \"image\": \"\",\n  \"sound\": \"\",\n  \"title\": \"\",\n  \"channel\": \"\",\n  \"timeSensitive\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "push_by_techulus_send_notification_to_group",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/notification/to/group",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "notification",
            "to",
            "group"
          ]
        },
        "description": "Tool to send push notification to a specific device group. Use when you need to notify multiple devices in a group with customizable title, body, sound, and media options.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"link\": \"\",\n  \"image\": \"\",\n  \"sound\": \"\",\n  \"title\": \"\",\n  \"channel\": \"\",\n  \"groupId\": \"\",\n  \"timeSensitive\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "push_by_techulus_send_notification_webhook_post",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/send/notification/webhook/post",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "send",
            "notification",
            "webhook",
            "post"
          ]
        },
        "description": "Tool to send push notifications to all devices associated with a specific API key via POST request. Use when you need to deliver notifications through webhook integrations or team-based distribution.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"body\": \"\",\n  \"link\": \"\",\n  \"image\": \"\",\n  \"sound\": \"\",\n  \"title\": \"\",\n  \"api_key\": \"\",\n  \"channel\": \"\",\n  \"time_sensitive\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}