{"name":"com.volunteerreminder/mcp","slug":"volunteerreminder-mcp","title":"VolunteerReminder","description":"Import a volunteer roster and preview shifts. Test-mode until a human enables live SMS.","url":"https://mcp.market/server/volunteerreminder-mcp","rating":null,"grade":"C","score":60,"certified":false,"status":"active","category":"other","tags":[],"presence":{"score":8,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"uptime":{"percent":100,"checks":7,"ok":7,"last_checked_at":"2026-09-21T02:50:35.986Z","last_ok_at":"2026-09-21T02:50:35.986Z","latency_ms":130},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":"https://github.com/talltimbersgroup/VolunteerReminder","website":"https://volunteerreminder.com/docs/agents","version":"0.3.0","remotes":[{"type":"streamable-http","url":"https://mcp.volunteerreminder.com/mcp"}],"packages":[],"tools":[{"name":"add_contacts","description":"Add one or more volunteers to the roster in a single call. ALL-OR-NOTHING: if the batch would push the account past its plan's volunteer limit, or any contact references a group_id not on this account, NOTHING is added and the error names the limit/count/bad id so you can adjust. Phone numbers are validated and normalized to E.164. Requires the `contacts:write` scope.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"contacts":{"minItems":1,"maxItems":200,"type":"array","items":{"type":"object","properties":{"full_name":{"type":"string","minLength":1,"maxLength":200,"description":"Display name, shown on the roster and in reminder text. Required."},"first_name":{"description":"First name, or null.","anyOf":[{"type":"string","maxLength":120},{"type":"null"}]},"last_name":{"description":"Last name, or null.","anyOf":[{"type":"string","maxLength":120},{"type":"null"}]},"email_address":{"description":"Email address reminders may be sent to, or null.","anyOf":[{"type":"string","maxLength":320,"format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},{"type":"null"}]},"mobile_phone":{"description":"Mobile number for SMS reminders. Accepts E.164 (+15125550100) or a plain 10-digit US/Canada number; stored as E.164. Send null to clear.","anyOf":[{"type":"string","maxLength":32},{"type":"null"}]},"land_phone":{"description":"Landline number (informational only, never texted), or null.","anyOf":[{"type":"string","maxLength":32},{"type":"null"}]},"group_id":{"description":"Id of an existing group on this account to file the contact under, or null.","anyOf":[{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},{"type":"null"}]},"notes":{"description":"Free-text notes about the contact, or null.","anyOf":[{"type":"string","maxLength":2000},{"type":"null"}]}},"required":["full_name"]},"description":"The volunteers to add (1–200 per call). Each needs at least a full_name."}},"required":["contacts"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"archive_schedule","description":"Archive (soft-delete) a schedule. It stops appearing in the active list and no further reminders go out for it, but past reminder history is preserved. This is reversible only from the dashboard. Confirm with the user before archiving. Requires the `schedules:write` scope.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"schedule_id":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991,"description":"The schedule's numeric id (from list_schedules or get_schedule)."}},"required":["schedule_id"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"assign_contacts_to_schedule","description":"Assign volunteers to a schedule. This REPLACES the schedule's entire roster — send the COMPLETE desired set of contact ids, not a delta (pass an empty array to clear it). Every id must belong to this account or the whole request is rejected with the offending ids named. Does not change occurrences. Requires the `contacts:write` scope.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"schedule_id":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991,"description":"The schedule to assign the roster to."},"contact_ids":{"maxItems":500,"type":"array","items":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},"description":"The complete set of volunteer contact ids for this schedule (replaces any existing roster). Empty array clears the roster."}},"required":["schedule_id","contact_ids"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"create_account","description":"Start a new VolunteerReminder account for a human, using their email address. This does NOT finish signup and does NOT return an API key: it emails the person a verification link they must click to activate the account. Nothing can be built on the account and no reminders can ever send until they verify — and even then a new account starts in safe `test` mode (reminders reach only the owner, never volunteers) until a human turns on live sending from the dashboard. Idempotent: calling it again with the same email re-sends the link and creates no duplicate. After the user tells you they've verified, they mint an API key from the dashboard and reconnect this connector with it. Tell the user to check their email.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"email":{"type":"string","maxLength":254,"format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$","description":"The account owner's email address. The verification / sign-in link is sent here; only the person who controls this inbox can activate the account. Required."},"organization_name":{"description":"Display name for the organization (becomes the account name). Optional — defaults to a placeholder the owner can rename after verifying. The account timezone defaults to America/Chicago and is editable later.","type":"string","maxLength":200}},"required":["email"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"create_schedule","description":"Create a recurring (or custom-date) schedule and materialize its upcoming occurrences. Best practice: call preview_schedule_occurrences with the same recurrence settings first and confirm the dates with the user. This tool returns the created schedule AND an inline preview of its next occurrences so you can show what was set up. You can optionally seed the roster with contact_ids at creation. Requires the `schedules:write` scope.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"description":{"type":"string","minLength":1,"description":"Short label shown on the schedule list and in reminders, e.g. \"Sunday greeters\"."},"job_name":{"type":"string","minLength":1,"description":"The role/task volunteers are reminded about. Matched case-insensitively against the account's existing jobs and created if new."},"group_id":{"description":"Id of an existing volunteer group to attach, or null. Unknown ids are ignored.","anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"schedule_type":{"type":"string","enum":["weekly","monthly_fixed","monthly_nth","bimonthly_fixed","bimonthly_nth","custom"],"description":"Recurrence shape. 'weekly' recurs on one or more days of the week; 'monthly_fixed'/'bimonthly_fixed' recur on a fixed day of the month; 'monthly_nth'/'bimonthly_nth' recur on the Nth weekday of the month; the 'bimonthly_*' variants also alternate months starting from start_month; 'custom' uses an explicit list of dates."},"days_of_week":{"description":"Weekday names this recurs on, e.g. [\"tuesday\",\"thursday\"]. Required (non-empty) when schedule_type is 'weekly'; ignored otherwise.","type":"array","items":{"type":"string","enum":["sunday","monday","tuesday","wednesday","thursday","friday","saturday"]}},"nth_weekday":{"description":"The weekday that recurs, for schedule_type 'monthly_nth'/'bimonthly_nth'. Defaults to sunday for those types.","type":"string","enum":["sunday","monday","tuesday","wednesday","thursday","friday","saturday"]},"week_of_month":{"description":"Which occurrence of the weekday in the month (1st–5th), for the Nth-weekday types. Defaults to 1.","type":"integer","minimum":1,"maximum":5},"day_of_month":{"description":"Fixed day of the month for the 'fixed' types. Defaults to 1. Clamped to the last day of shorter months (e.g. 31 in February becomes the 28th/29th).","type":"integer","minimum":1,"maximum":31},"start_month":{"description":"Anchor month (1=January … 12=December) the every-other-month cadence steps from, for the 'bimonthly_*' types. Defaults to the account's current month.","type":"integer","minimum":1,"maximum":12},"time":{"description":"Wall-clock time of day \"HH:mm\" (24-hour) in the account timezone, or null for no specific time.","anyOf":[{"type":"string","pattern":"^([01]\\d|2[0-3]):[0-5]\\d$"},{"type":"null"}]},"start_date":{"description":"\"yyyy-MM-dd\" (account timezone) before which no occurrences materialize, or null for no lower bound.","anyOf":[{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},{"type":"null"}]},"end_date":{"description":"\"yyyy-MM-dd\" (account timezone) after which occurrences stop, or null for no end date.","anyOf":[{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},{"type":"null"}]},"custom_dates":{"description":"Explicit list of \"yyyy-MM-dd\" dates. Required (non-empty) when schedule_type is 'custom'; ignored otherwise.","type":"array","items":{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"}},"contact_ids":{"description":"Optional initial roster (volunteer contact ids) to assign at creation. Ids not owned by this account are silently dropped. To change a roster later, use assign_contacts_to_schedule.","type":"array","items":{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991}},"notes":{"description":"Free-text internal notes, or null.","anyOf":[{"type":"string"},{"type":"null"}]}},"required":["description","job_name","schedule_type"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_account_overview","description":"Read the current VolunteerReminder account: organization name, plan and entitlements, current reminder send mode, and volunteer usage vs the plan limit. Call this first to understand what the account can do before creating schedules or contacts. Note the `reminder_mode`: an account created through this connector (create_account) starts in `test` (reminders reroute to the owner, never to volunteers); only a human can switch it to `live` from the dashboard. `effective_mode` is what actually happens at send time.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_open_days","description":"List calendar days in the look-ahead window that have no attendable shift yet, plus recurring monthly slots not yet claimed by a schedule — i.e. where the account still needs volunteers. Requires the `read` scope.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"months":{"description":"How many months to look ahead (1–24). Default 12.","type":"integer","minimum":1,"maximum":24},"current_year_only":{"description":"When true (the default), clamp the window to the end of the current calendar year instead of crossing into next year.","type":"boolean"}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_pricing","description":"Read VolunteerReminder's public plan catalog: each plan's monthly and annual price (USD), volunteer limit, and included features (SMS reminders are included with no per-message credits or metering). No API key required — use this to help a user comparison-shop or decide which plan fits before they sign up.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_reminder_settings","description":"Read the account's reminder lead times (the account-wide default plus any per-job overrides) and which channels (email / SMS) are available on the current plan. Reminder overrides are per JOB, not per individual schedule. Requires the `read` scope.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_schedule","description":"Get one schedule's full configuration: recurrence settings, job/role, group, roster (contact ids), start/end dates, and notes. Requires the `read` scope.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"schedule_id":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991,"description":"The schedule's numeric id (from list_schedules or get_schedule)."}},"required":["schedule_id"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_send_history","description":"Read recent reminder outcomes — which reminders were sent and which failed — newest first, paginated. Use this to confirm reminders actually went out. Requires the `read` scope.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"page":{"description":"1-indexed page number. Default 1.","type":"integer","minimum":1,"maximum":9007199254740991},"per_page":{"description":"Rows per page (max 100). Default 20.","type":"integer","minimum":1,"maximum":100}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"get_upcoming_shifts","description":"List a schedule's upcoming occurrences (shifts) in a date range, each with its date/time, whether the roster is attending that date, and the assigned volunteers. Requires the `read` scope.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"schedule_id":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991,"description":"The schedule's numeric id (from list_schedules or get_schedule)."},"from":{"description":"Start of the range: \"yyyy-MM-dd\" (account timezone) or a full ISO 8601 datetime. Defaults to now.","type":"string"},"to":{"description":"End of the range, same formats as `from`. Defaults to 90 days from now.","type":"string"},"limit":{"description":"Maximum shifts to return (default 20, max 100).","type":"integer","minimum":1,"maximum":100}},"required":["schedule_id"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"import_volunteer_schedule","description":"Parse a pasted or uploaded volunteer roster + schedule (CSV or a table with columns like name, phone, email, job/role, day, start, end) and either PREVIEW or CREATE the contacts, schedules, and assignments. Always call first with confirm=false and show the user the upcoming shifts; only call again with confirm=true, passing back preview_token from that preview, after they approve. Import is test-mode only and is refused on some accounts. Use create_account first if they do not have an account — do not invent a second signup path. This tool never changes reminder mode, never enables the confirm loop or substitute finder, and never texts real volunteers. New accounts stay in test mode. Requires `read` for preview; `schedules:write` and `contacts:write` to commit. Set consent_attested=true on commit when any row has a phone number (the coordinator affirms the volunteers agreed to be texted).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"text":{"type":"string","minLength":1,"maxLength":200000,"description":"The roster as CSV, TSV, pipe-delimited text, or a headerless table in the order name, phone, email, job, day, start, end. Quoted CSV fields are fine. Do not log this text."},"confirm":{"description":"false (default) = parse and preview only, no writes. true = create the contacts, schedules, and assignments after the user approved the preview. confirm=true requires preview_token from the preceding preview.","type":"boolean"},"preview_token":{"description":"Required when confirm=true. Copy the preview_token returned by the preceding confirm=false call for this exact roster text.","type":"string","minLength":1,"maxLength":80},"consent_attested":{"description":"Required true on confirm=true when any contact has a phone number. Affirms the volunteers agreed to receive shift-reminder texts.","type":"boolean"}},"required":["text"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"list_contacts","description":"List all volunteers on the account's roster, each with contact details and group. Requires the `read` scope.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"list_schedules","description":"List all active (non-archived) schedules on the account, each with its description, job/role, next upcoming occurrence, and how many volunteers are rostered. Requires the `read` scope.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"preview_schedule_occurrences","description":"PURE and side-effect-free: computes the next occurrence dates a recurrence configuration WOULD produce, without creating anything. Use this to show the user the concrete dates (e.g. 'the next 8 Tuesdays at 9:00 AM Central') and get their confirmation BEFORE calling create_schedule. Requires the `read` scope.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"schedule_type":{"type":"string","enum":["weekly","monthly_fixed","monthly_nth","bimonthly_fixed","bimonthly_nth","custom"],"description":"Recurrence shape. 'weekly' recurs on one or more days of the week; 'monthly_fixed'/'bimonthly_fixed' recur on a fixed day of the month; 'monthly_nth'/'bimonthly_nth' recur on the Nth weekday of the month; the 'bimonthly_*' variants also alternate months starting from start_month; 'custom' uses an explicit list of dates."},"days_of_week":{"description":"Weekday names this recurs on, e.g. [\"tuesday\",\"thursday\"]. Required (non-empty) when schedule_type is 'weekly'; ignored otherwise.","type":"array","items":{"type":"string","enum":["sunday","monday","tuesday","wednesday","thursday","friday","saturday"]}},"nth_weekday":{"description":"The weekday that recurs, for schedule_type 'monthly_nth'/'bimonthly_nth'. Defaults to sunday for those types.","type":"string","enum":["sunday","monday","tuesday","wednesday","thursday","friday","saturday"]},"week_of_month":{"description":"Which occurrence of the weekday in the month (1st–5th), for the Nth-weekday types. Defaults to 1.","type":"integer","minimum":1,"maximum":5},"day_of_month":{"description":"Fixed day of the month for the 'fixed' types. Defaults to 1. Clamped to the last day of shorter months (e.g. 31 in February becomes the 28th/29th).","type":"integer","minimum":1,"maximum":31},"start_month":{"description":"Anchor month (1=January … 12=December) the every-other-month cadence steps from, for the 'bimonthly_*' types. Defaults to the account's current month.","type":"integer","minimum":1,"maximum":12},"time":{"description":"Wall-clock time of day \"HH:mm\" (24-hour) in the account timezone, or null for no specific time.","anyOf":[{"type":"string","pattern":"^([01]\\d|2[0-3]):[0-5]\\d$"},{"type":"null"}]},"start_date":{"description":"\"yyyy-MM-dd\" (account timezone) before which no occurrences materialize, or null for no lower bound.","anyOf":[{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},{"type":"null"}]},"end_date":{"description":"\"yyyy-MM-dd\" (account timezone) after which occurrences stop, or null for no end date.","anyOf":[{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},{"type":"null"}]},"custom_dates":{"description":"Explicit list of \"yyyy-MM-dd\" dates. Required (non-empty) when schedule_type is 'custom'; ignored otherwise.","type":"array","items":{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"}},"count":{"description":"How many upcoming occurrences to return (default 8, max 52).","type":"integer","minimum":1,"maximum":52}},"required":["schedule_type"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"remove_contact","description":"Remove (soft-delete) a volunteer from the roster. This frees a volunteer-cap slot and removes them from any schedule rosters they were on. Confirm with the user before removing. Requires the `contacts:write` scope.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"contact_id":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991,"description":"The contact's numeric id (from list_contacts)."}},"required":["contact_id"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"remove_reminder_rule","description":"Remove a reminder lead-time rule. Provide `job_id` to remove that job's override; omit it to clear the account-wide default. Returns the updated reminder settings. Requires the `reminders:write` scope.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"job_id":{"description":"Remove this job's lead-time override. Omit to clear the account-wide default.","type":"integer","exclusiveMinimum":0,"maximum":9007199254740991}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"send_test_reminder","description":"Send a single TEST reminder to the account owner's own email/phone so they can preview what a reminder looks like. This never reaches volunteers — it always reroutes to the owner. Optionally pass a schedule_id to preview that schedule's reminder; otherwise a generic sample is sent. Requires the `reminders:write` scope.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"schedule_id":{"description":"Preview the reminder for this schedule. Omit for a generic sample reminder.","type":"integer","exclusiveMinimum":0,"maximum":9007199254740991}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"set_reminder_rule","description":"Set the reminder lead time: the account-wide default and/or a per-job override. Provide at least one of `global_default` or `job_override`, and set at least one of days/hours/minutes greater than zero. Overrides are per JOB (a job may back several schedules). Requires the `reminders:write` scope.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"global_default":{"description":"Set (or replace) the account-wide default lead time.","type":"object","properties":{"days_before":{"type":"integer","minimum":0,"maximum":9007199254740991,"description":"Whole days before the shift to send the reminder."},"hours_before":{"type":"integer","minimum":0,"maximum":9007199254740991,"description":"Additional whole hours before the shift."},"minutes_before":{"type":"integer","minimum":0,"maximum":9007199254740991,"description":"Additional whole minutes before the shift."}},"required":["days_before","hours_before","minutes_before"]},"job_override":{"description":"Create or replace the lead-time override for one job.","type":"object","properties":{"job_id":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991,"description":"The job this override applies to (must belong to this account)."},"days_before":{"type":"integer","minimum":0,"maximum":9007199254740991,"description":"Whole days before the shift to send the reminder."},"hours_before":{"type":"integer","minimum":0,"maximum":9007199254740991,"description":"Additional whole hours before the shift."},"minutes_before":{"type":"integer","minimum":0,"maximum":9007199254740991,"description":"Additional whole minutes before the shift."}},"required":["job_id","days_before","hours_before","minutes_before"]},"require_sms":{"description":"Assert SMS should be used. If true and the plan does NOT include SMS, the whole request is rejected with an upgrade hint (nothing is saved). Omit or set false to make no assertion.","type":"boolean"}},"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"start_checkout","description":"Get a Stripe-hosted Checkout URL for the account to subscribe to a paid plan, then HAND THE URL TO THE HUMAN to open and complete payment. You never take payment yourself and never see card details. Use get_pricing first to pick a plan. Fails if the account already has an active subscription (manage that from the billing dashboard). Requires a connected API key (any scope with `read`).","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"plan":{"type":"string","enum":["basic","deluxe","pro"],"description":"The plan id to subscribe to (see get_pricing)."},"interval":{"description":"Billing interval. Defaults to monthly.","type":"string","enum":["monthly","annual"]}},"required":["plan"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"update_contact","description":"Update a volunteer's details. Send only the fields you want to change; a field set to null clears it. Requires the `contacts:write` scope.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"contact_id":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991,"description":"The contact's numeric id (from list_contacts)."},"full_name":{"description":"New display name.","type":"string","minLength":1,"maxLength":200},"first_name":{"description":"First name, or null.","anyOf":[{"type":"string","maxLength":120},{"type":"null"}]},"last_name":{"description":"Last name, or null.","anyOf":[{"type":"string","maxLength":120},{"type":"null"}]},"email_address":{"description":"Email address reminders may be sent to, or null.","anyOf":[{"type":"string","maxLength":320,"format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},{"type":"null"}]},"mobile_phone":{"description":"Mobile number for SMS reminders. Accepts E.164 (+15125550100) or a plain 10-digit US/Canada number; stored as E.164. Send null to clear.","anyOf":[{"type":"string","maxLength":32},{"type":"null"}]},"land_phone":{"description":"Landline number (informational only, never texted), or null.","anyOf":[{"type":"string","maxLength":32},{"type":"null"}]},"group_id":{"description":"Id of an existing group on this account to file the contact under, or null.","anyOf":[{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991},{"type":"null"}]},"notes":{"description":"Free-text notes about the contact, or null.","anyOf":[{"type":"string","maxLength":2000},{"type":"null"}]}},"required":["contact_id"],"$schema":"http://json-schema.org/draft-07/schema#"}},{"name":"update_schedule","description":"Partially update a schedule — send only the fields you want to change; unset fields keep their current value. Changing recurrence fields recomputes and re-materializes future occurrences. This tool does NOT change the roster; use assign_contacts_to_schedule for that. Requires the `schedules:write` scope.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"schedule_id":{"type":"integer","exclusiveMinimum":0,"maximum":9007199254740991,"description":"The schedule's numeric id (from list_schedules or get_schedule)."},"description":{"description":"New schedule label.","type":"string","minLength":1},"job_name":{"description":"New job/role name.","type":"string","minLength":1},"group_id":{"description":"New group id, or null to detach. Unknown ids are ignored.","anyOf":[{"type":"integer","minimum":-9007199254740991,"maximum":9007199254740991},{"type":"null"}]},"schedule_type":{"type":"string","enum":["weekly","monthly_fixed","monthly_nth","bimonthly_fixed","bimonthly_nth","custom"],"description":"Recurrence shape. 'weekly' recurs on one or more days of the week; 'monthly_fixed'/'bimonthly_fixed' recur on a fixed day of the month; 'monthly_nth'/'bimonthly_nth' recur on the Nth weekday of the month; the 'bimonthly_*' variants also alternate months starting from start_month; 'custom' uses an explicit list of dates."},"days_of_week":{"description":"Weekday names this recurs on, e.g. [\"tuesday\",\"thursday\"]. Required (non-empty) when schedule_type is 'weekly'; ignored otherwise.","type":"array","items":{"type":"string","enum":["sunday","monday","tuesday","wednesday","thursday","friday","saturday"]}},"nth_weekday":{"description":"The weekday that recurs, for schedule_type 'monthly_nth'/'bimonthly_nth'. Defaults to sunday for those types.","type":"string","enum":["sunday","monday","tuesday","wednesday","thursday","friday","saturday"]},"week_of_month":{"description":"Which occurrence of the weekday in the month (1st–5th), for the Nth-weekday types. Defaults to 1.","type":"integer","minimum":1,"maximum":5},"day_of_month":{"description":"Fixed day of the month for the 'fixed' types. Defaults to 1. Clamped to the last day of shorter months (e.g. 31 in February becomes the 28th/29th).","type":"integer","minimum":1,"maximum":31},"start_month":{"description":"Anchor month (1=January … 12=December) the every-other-month cadence steps from, for the 'bimonthly_*' types. Defaults to the account's current month.","type":"integer","minimum":1,"maximum":12},"time":{"description":"Wall-clock time of day \"HH:mm\" (24-hour) in the account timezone, or null for no specific time.","anyOf":[{"type":"string","pattern":"^([01]\\d|2[0-3]):[0-5]\\d$"},{"type":"null"}]},"start_date":{"description":"\"yyyy-MM-dd\" (account timezone) before which no occurrences materialize, or null for no lower bound.","anyOf":[{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},{"type":"null"}]},"end_date":{"description":"\"yyyy-MM-dd\" (account timezone) after which occurrences stop, or null for no end date.","anyOf":[{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"},{"type":"null"}]},"custom_dates":{"description":"Explicit list of \"yyyy-MM-dd\" dates. Required (non-empty) when schedule_type is 'custom'; ignored otherwise.","type":"array","items":{"type":"string","pattern":"^\\d{4}-\\d{2}-\\d{2}$"}},"notes":{"description":"New notes, or null to clear.","anyOf":[{"type":"string"},{"type":"null"}]}},"required":["schedule_id"],"$schema":"http://json-schema.org/draft-07/schema#"}}],"scan":{"score":60,"grade":"C","scanned_at":"2026-09-20T00:25:55.894Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-20T00:25:55.915Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":20,"max":20,"notes":["remote reachable in 896ms"]},"poisoning":{"score":15,"max":15,"notes":["23 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 8 write-action tools with no auth"]},"maintenance":{"score":3,"max":15,"notes":["repository not readable: repo not found"]},"identity":{"score":4,"max":10,"notes":["verified namespace with website, no repo"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"}],"inputs":{"probes":[{"url":"https://mcp.volunteerreminder.com/mcp","reachable":true,"authRequired":false,"latencyMs":896,"serverInfo":{"name":"volunteerreminder","version":"0.3.0"}}],"packages":[],"repo":{"found":false,"owner":"talltimbersgroup","repo":"VolunteerReminder","error":"repo not found"},"icon":{"url":"https://volunteerreminder.com/assets/img/VolunteerReminder-Graphic.png","source":"registry","width":2040,"height":2040},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":8}}}},"grade_history":[],"reviews":[]}