{
  "info": {
    "name": "Fomo — mcp.ai",
    "description": "REST API for the Fomo 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/fomo",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "fomo_create_fomo_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/fomo/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "fomo",
            "event"
          ]
        },
        "description": "Tool to create a new social proof event in Fomo. Use when you want to display an animated notification on your website showing recent customer activity. Events are created based on notification templa",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"city\": \"\",\n  \"title\": \"\",\n  \"country\": \"\",\n  \"province\": \"\",\n  \"image_url\": \"\",\n  \"first_name\": \"\",\n  \"ip_address\": \"\",\n  \"external_id\": \"\",\n  \"email_address\": \"\",\n  \"event_type_id\": 0,\n  \"custom_event_fields_attributes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fomo_create_fomo_template",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/fomo/template",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "fomo",
            "template"
          ]
        },
        "description": "Tool to create a Template (Event Type) in Fomo. Use when building 3rd party Fomo integrations. Templates define the message structure for notification events and can include markdown formatting, custo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"message\": \"\",\n  \"image_url\": \"\",\n  \"use_avatar\": false,\n  \"use_ip_mapping\": false,\n  \"markdown_enabled\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fomo_delete_fomo_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/fomo/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "fomo",
            "event"
          ]
        },
        "description": "Tool to delete a Fomo event by ID. Permanently removes the notification event from the application. Use when you need to remove a specific event from your Fomo account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fomo_get_fomo_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/fomo/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "fomo",
            "event"
          ]
        },
        "description": "Tool to retrieve a single event by ID from Fomo. Use when you need to fetch details of a specific notification event using its unique identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fomo_get_statistics",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/statistics",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "statistics"
          ]
        },
        "description": "Tool to fetch notification impressions, clicks, and conversion data for your Fomo application. Returns analytics statistics within a specified date range. Use when you need to analyze notification per",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date_range_to\": \"\",\n  \"date_range_from\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fomo_list_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "events"
          ]
        },
        "description": "Tool to retrieve all notification events from your Fomo application. Use when you need to list, query, or paginate through events. Supports pagination, sorting, and optional metadata about total event",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"page\": 0,\n  \"order_by\": \"\",\n  \"per_page\": 0,\n  \"show_meta\": false,\n  \"order_direction\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fomo_search_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search",
            "event"
          ]
        },
        "description": "Tool to search for a specific Fomo event by external_id or email_address. Use when you need to find a single event using a unique identifier. Returns the full event details if found.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"field\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fomo_update_application",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/application",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "application"
          ]
        },
        "description": "Tool to update Fomo application settings including display configuration, notification behavior, theme, position, and UTM tracking parameters. Use when you need to modify widget appearance, timing, or",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"url\": \"\",\n  \"name\": \"\",\n  \"theme\": \"\",\n  \"closable\": false,\n  \"language\": \"\",\n  \"position\": \"\",\n  \"installed\": false,\n  \"page_load\": 0,\n  \"randomize\": false,\n  \"utm_medium\": \"\",\n  \"utm_source\": \"\",\n  \"display_for\": 0,\n  \"hide_mobile\": false,\n  \"display_period\": 0,\n  \"time_ago_period\": 0,\n  \"display_interval\": 0,\n  \"maximum_per_page\": \"\",\n  \"display_threshold\": 0,\n  \"loop_notification\": false,\n  \"time_ago_threshold\": 0,\n  \"event_types_attributes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "fomo_update_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "event"
          ]
        },
        "description": "Tool to update an existing Fomo event. Changes key-value pairs of an event such as location, name, title, or custom fields. Use when you need to modify event properties after creation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"url\": \"\",\n  \"city\": \"\",\n  \"title\": \"\",\n  \"country\": \"\",\n  \"province\": \"\",\n  \"image_url\": \"\",\n  \"created_at\": \"\",\n  \"first_name\": \"\",\n  \"ip_address\": \"\",\n  \"external_id\": \"\",\n  \"email_address\": \"\",\n  \"event_type_id\": 0,\n  \"custom_event_fields_attributes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}