fire-event
Trigger and manage custom events by specifying a name and payload, enabling real-time communication and updates within the Consul MCP Server framework.
Instructions
Fire a new event
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | No | Name of the event | |
payload | No | Event payload |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"default": "",
"description": "Name of the event",
"type": "string"
},
"payload": {
"default": "",
"description": "Event payload",
"type": "string"
}
},
"type": "object"
}