{
  "info": {
    "name": "Svix — mcp.ai",
    "description": "REST API for the Svix 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/svix",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "svix_app_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/app/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "app",
            "create"
          ]
        },
        "description": "Tool to create a new Svix application. Use when you need to register an application with specific settings.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uid\": \"\",\n  \"name\": \"\",\n  \"metadata\": {},\n  \"rateLimit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_app_delete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/app/delete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "app",
            "delete"
          ]
        },
        "description": "Permanently delete a Svix application by its ID or UID. Use this to remove an application and all its associated endpoints, messages, and webhooks. This action is destructive and cannot be undone.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_app_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/app/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "app",
            "get"
          ]
        },
        "description": "Tool to retrieve details of a specific Svix application by its ID. Use when you need application metadata after authenticating with Svix.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_app_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/app/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "app",
            "list"
          ]
        },
        "description": "Tool to list all applications. Use when you need to retrieve or paginate through your Svix applications.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order\": \"\",\n  \"iterator\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_app_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/app/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "app",
            "update"
          ]
        },
        "description": "Tool to update an existing Svix application by ID. Use when you need to modify properties like name, rate limit, UID, or metadata. Call after confirming the correct app_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uid\": \"\",\n  \"name\": \"\",\n  \"app_id\": \"\",\n  \"metadata\": {},\n  \"rateLimit\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_attempt_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/attempt/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "attempt",
            "get"
          ]
        },
        "description": "Tool to retrieve details of a specific message attempt. Use after confirming app_id, msg_id, and attempt_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_id\": \"\",\n  \"msg_id\": \"\",\n  \"attempt_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_attempt_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/attempt/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "attempt",
            "list"
          ]
        },
        "description": "Tool to list all delivery attempts for a specific message. Use after confirming message ID to debug attempts.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"after\": \"\",\n  \"limit\": 0,\n  \"app_id\": \"\",\n  \"before\": \"\",\n  \"msg_id\": \"\",\n  \"status\": 0,\n  \"iterator\": \"\",\n  \"endpoint_id\": \"\",\n  \"event_types\": \"\",\n  \"status_code_class\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "create"
          ]
        },
        "description": "Tool to create a new Svix webhook endpoint. Use after obtaining the app ID to register your webhook receiver URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uid\": \"\",\n  \"url\": \"\",\n  \"app_id\": \"\",\n  \"secret\": \"\",\n  \"version\": 0,\n  \"channels\": \"\",\n  \"disabled\": false,\n  \"rate_limit\": 0,\n  \"description\": \"\",\n  \"filter_types\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_delete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/delete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "delete"
          ]
        },
        "description": "Tool to delete an endpoint. Use when you need to remove a specific endpoint after confirming its application and endpoint IDs.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_id\": \"\",\n  \"endpoint_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "get"
          ]
        },
        "description": "Tool to retrieve details of a specific endpoint. Use after confirming app_id and endpoint_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_id\": \"\",\n  \"endpoint_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "list"
          ]
        },
        "description": "Tool to list all endpoints for a specific application. Use after obtaining the application ID to retrieve its endpoints.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order\": \"\",\n  \"app_id\": \"\",\n  \"iterator\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_patch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/patch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "patch"
          ]
        },
        "description": "Tool to partially update an endpoint’s configuration. Use when you need to adjust endpoint settings without full replacement.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uid\": \"\",\n  \"url\": \"\",\n  \"app_id\": \"\",\n  \"secret\": \"\",\n  \"channels\": \"\",\n  \"disabled\": false,\n  \"rateLimit\": 0,\n  \"description\": \"\",\n  \"endpoint_id\": \"\",\n  \"filterTypes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_patch_headers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/patch/headers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "patch",
            "headers"
          ]
        },
        "description": "Tool to partially update headers for a specific endpoint. Use when you need to add, modify, or remove custom headers after endpoint creation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_id\": \"\",\n  \"headers\": {},\n  \"endpoint_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_recover_failed_webhooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/recover/failed/webhooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "recover",
            "failed",
            "webhooks"
          ]
        },
        "description": "Tool to recover messages that failed to send to an endpoint. Use when you need to retry webhook delivery for failed events after identifying delivery failures.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"since\": \"\",\n  \"until\": \"\",\n  \"app_id\": \"\",\n  \"endpoint_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_replay_missing",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/replay/missing",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "replay",
            "missing"
          ]
        },
        "description": "Tool to replay missing webhooks for a specific endpoint. Use when some webhooks failed or were lost and need to be resent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"since\": \"\",\n  \"until\": \"\",\n  \"app_id\": \"\",\n  \"endpoint_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_secret_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/secret/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "secret",
            "get"
          ]
        },
        "description": "Tool to retrieve the secret for a specific endpoint. Use after confirming app_id and endpoint_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_id\": \"\",\n  \"endpoint_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_secret_rotate",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/secret/rotate",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "secret",
            "rotate"
          ]
        },
        "description": "Tool to rotate the signing secret key for an endpoint. Use when you need to invalidate the current secret and generate or supply a new one. Call after confirming app_id and endpoint_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"app_id\": \"\",\n  \"endpoint_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_send_example_message",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/send/example/message",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "send",
            "example",
            "message"
          ]
        },
        "description": "Tool to send a test message for a specific event type to an endpoint. Use after setting up an endpoint to verify its configuration. Note: the endpoint's filter_types must include the event_type being ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_id\": \"\",\n  \"event_type\": \"\",\n  \"endpoint_id\": \"\",\n  \"payload_overrides\": {}\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_stats_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/stats/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "stats",
            "get"
          ]
        },
        "description": "Tool to retrieve basic statistics for a specific endpoint. Use after confirming app_id and endpoint_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_id\": \"\",\n  \"endpoint_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_transformation_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/transformation/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "transformation",
            "get"
          ]
        },
        "description": "Tool to retrieve transformation settings for a specific endpoint. Use after confirming app_id and endpoint_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_id\": \"\",\n  \"endpoint_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_transformation_set",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/transformation/set",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "transformation",
            "set"
          ]
        },
        "description": "Tool to set or update transformation settings for an endpoint. Use when you need to configure or toggle an endpoint's transformation code after creation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"code\": \"\",\n  \"app_id\": \"\",\n  \"enabled\": false,\n  \"endpoint_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "update"
          ]
        },
        "description": "Tool to update an existing endpoint or create it if it doesn't exist (upsert). Use when you need to modify endpoint settings like URL, rate limit, channels, or metadata. If the endpoint doesn't exist,",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uid\": \"\",\n  \"url\": \"\",\n  \"app_id\": \"\",\n  \"version\": 0,\n  \"channels\": \"\",\n  \"disabled\": false,\n  \"metadata\": {},\n  \"rateLimit\": 0,\n  \"description\": \"\",\n  \"endpoint_id\": \"\",\n  \"filterTypes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_endpoint_update_headers",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/endpoint/update/headers",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "endpoint",
            "update",
            "headers"
          ]
        },
        "description": "Tool to completely replace headers for a specific endpoint. Use when you need to set a full new header mapping.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_id\": \"\",\n  \"headers\": {},\n  \"endpoint_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_event_type_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/event/type/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "event",
            "type",
            "create"
          ]
        },
        "description": "Create a new event type in Svix or unarchive an existing one. Event types are identifiers (like 'order.created', 'user.signup') that categorize the webhooks your application sends. Use period-delimite",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"schemas\": {},\n  \"archived\": false,\n  \"description\": \"\",\n  \"featureFlag\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_event_type_delete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/event/type/delete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "event",
            "type",
            "delete"
          ]
        },
        "description": "Tool to delete an event type. Use when you need to archive or permanently expunge a specific event type after confirming its name.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"expunge\": false,\n  \"event_type_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_event_type_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/event/type/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "event",
            "type",
            "get"
          ]
        },
        "description": "Retrieve details of a specific event type by its name. Use this to inspect an existing event type's configuration, schema, and status. Event types define the categories of events that can be sent thro",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event_type_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_event_type_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/event/type/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "event",
            "type",
            "list"
          ]
        },
        "description": "Tool to retrieve a list of all event types. Use when you need to inspect available event types, optionally including their JSON schemas. Use after authenticating the client.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"iterator\": \"\",\n  \"with_content\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_event_type_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/event/type/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "event",
            "type",
            "update"
          ]
        },
        "description": "Update an existing event type's description, schema, feature flags, or archive status. Use this to modify event type configuration. The event type must already exist - use List Event Types or Get Even",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"schemas\": {},\n  \"archived\": false,\n  \"description\": \"\",\n  \"feature_flag\": \"\",\n  \"event_type_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_integration_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/integration/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "integration",
            "create"
          ]
        },
        "description": "Tool to create a new integration for a specific application. Use after confirming the application ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"app_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_integration_delete",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/integration/delete",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "integration",
            "delete"
          ]
        },
        "description": "Permanently delete an integration from a Svix application. This is a destructive operation that cannot be undone. Use when removing webhook integrations that are no longer needed. Requires both the ap",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_id\": \"\",\n  \"integration_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_integration_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/integration/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "integration",
            "get"
          ]
        },
        "description": "Tool to retrieve details of a specific integration. Use after confirming app_id and integration_id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_id\": \"\",\n  \"integration_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_integration_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/integration/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "integration",
            "list"
          ]
        },
        "description": "Tool to list all integrations for a specific application. Use after confirming the application ID, supporting pagination via limit and iterator. Use when you need to enumerate integrations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"app_id\": \"\",\n  \"iterator\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_integration_update",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/integration/update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "integration",
            "update"
          ]
        },
        "description": "Tool to update an existing integration by ID. Use when you need to modify an integration's name or feature flags.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"app_id\": \"\",\n  \"integ_id\": \"\",\n  \"feature_flags\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_message_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/message/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "message",
            "create"
          ]
        },
        "description": "Tool to create a new message for a specific application in Svix. Use after confirming app ID and event details.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"appId\": \"\",\n  \"payload\": {},\n  \"channels\": \"\",\n  \"eventType\": \"\",\n  \"idempotencyKey\": \"\",\n  \"payloadRetentionPeriod\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_message_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/message/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "message",
            "get"
          ]
        },
        "description": "Tool to retrieve details of a specific message by its ID. Use when you need message metadata and status after dispatch.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"app_id\": \"\",\n  \"msg_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_message_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/message/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "message",
            "list"
          ]
        },
        "description": "Tool to list all messages for a specific application. Use when you need to fetch or paginate messages after obtaining the application ID.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"tag\": \"\",\n  \"after\": \"\",\n  \"limit\": 0,\n  \"app_id\": \"\",\n  \"before\": \"\",\n  \"status\": 0,\n  \"channel\": \"\",\n  \"iterator\": \"\",\n  \"event_types\": \"\",\n  \"with_content\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "svix_source_create",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/source/create",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "source",
            "create"
          ]
        },
        "description": "Creates a new Svix Ingest source for receiving webhooks from external providers. A source generates an ingest URL that you can share with a webhook provider (e.g., GitHub, Stripe) as the destination f",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uid\": \"\",\n  \"name\": \"\",\n  \"config\": {},\n  \"source_type\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}