create_gathering
Initiate a new gathering by providing a unique ID and member count, enabling expense tracking and reimbursement calculations for social events on the Gatherings MCP Server.
Instructions
Create a new gathering
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gathering_id | Yes | Unique ID for the gathering (format: yyyy-mm-dd-type) | |
members | Yes | Number of members in the gathering |
Input Schema (JSON Schema)
{
"properties": {
"gathering_id": {
"description": "Unique ID for the gathering (format: yyyy-mm-dd-type)",
"type": "string"
},
"members": {
"description": "Number of members in the gathering",
"type": "number"
}
},
"required": [
"gathering_id",
"members"
],
"type": "object"
}