add_member
Add a new member to a social event managed on Gatherings MCP Server by specifying the gathering ID and member name to track expenses and reimbursements.
Instructions
Add a new member to a gathering
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gathering_id | Yes | ID of the gathering | |
member_name | Yes | Name of the member to add |
Input Schema (JSON Schema)
{
"properties": {
"gathering_id": {
"description": "ID of the gathering",
"type": "string"
},
"member_name": {
"description": "Name of the member to add",
"type": "string"
}
},
"required": [
"gathering_id",
"member_name"
],
"type": "object"
}