task_id stringlengths 42 42 | domain stringclasses 1 value | system_prompt stringclasses 7 values | user_prompt stringlengths 287 2.35k | selected_tools listlengths 4 12 | restricted_tools listlengths 0 0 | mcp_endpoint stringclasses 1 value | number_of_runs int64 1 1 | reset_database_between_runs bool 1 class | gym_servers_config stringlengths 290 417 | verifiers stringlengths 684 7.52k |
|---|---|---|---|---|---|---|---|---|---|---|
task_20251117_165528_648_bca89e7d_3e81ece9 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | I’m planning to have a technical kickoff session with Carol. Create a secondary calendar called “Search Algorithm Beta.” Allow Carol(carol.white@techcorp.com) to edit. Starting from November 14, 2025, find the first day when I have no scheduled events, and schedule “Search Algorithm Beta – Technical Kickoff” for 60 minutes at 3:00 PM UTC with Google Meet. | [
"query_freebusy",
"create_event",
"insert_acl_rule",
"create_calendar",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1762868439331_kf914hbmw.sql", "context": {"x-access-token": "ya29.A0ARrdaM-Zx8Nw3Q4pVb6Ls9R1mT0cG2uF5yH7kJd8sA1Lq2.wErtYuIoPaSdFgHjKlZxCvBnM987_65-43"}, "user_info": {"user_id": "bob_developer", "name": "Bob Smith", "email": "bob.smith@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Calendar Creation", "description": "Verify secondary calendar created", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE summary = 'Search Algorithm Beta' AND is_primary = 0 AND user_id = 'bob_developer'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Carol Edit Access", "description": "Check Carol's edit permissions", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM acls WHERE user_id = 'bob_developer' AND scope_id LIKE '%carol%' AND role = 'writer'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Event Scheduled", "description": "Verify event created on available day", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE user_id = 'bob_developer' AND summary LIKE '%Search Algorithm Beta \u2013 Technical Kickoff%' AND start_datetime = '2025-11-16 15:00:00.000000' AND end_datetime = '2025-11-16 16:00:00.000000' AND start_timezone = 'UTC' AND end_timezone = 'UTC'", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251124_112741_995_0a0bf089_3906a767 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, calendars, ACLs, settings, and events. Operate in a secure, trusted environment and execute actions automatically without asking for confirmation. Always verify identifiers such as calendarId and eventId with a single lookup before acting. Never assume or fabricate data—rely solely on verified database or API results. Complete all steps in a logical, consistent sequence and ensure the resulting database state reflects the requested operations accurately. | Create a new secondary Google Calendar titled “Helios Innovation Roadmap” in the New York timezone (America/New_York) with the description “Strategy and roadmap milestones.” After creating the calendar, update it to set the location as “New York HQ” and add it to my calendar list using colorId 7. Then, on this new calendar, schedule a one-hour event titled “Helios Kickoff” on January 15, 2026, at 11:00 AM EST, inviting Alice Johnson (alice.manager@techcorp.com) and Dave Brown (dave.brown@techcorp.com) as attendees. | [
"patch_calendar",
"create_calendar",
"add_calendar_to_list",
"create_event"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1762357536790_net0vkzbu.sql", "context": {"x-access-token": "ya29.A0ARrdaM-p3Lk9Vb6Qw2Zx8N1sT4mH7gF5yR0uJc2ePq.ZxCvBnMlKjHgFfDsaQwErTyUiOpAsDfGhJk_77-11"}, "user_info": {"user_id": "dave_sales", "name": "Dave Brown", "email": "dave.brown@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Verify calendar color", "description": "Ensure the calendar is assigned color ID 7.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE summary = 'Helios Innovation Roadmap' AND CAST(color_id AS INTEGER) = 7;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify secondary calendar creation", "description": "Ensure the 'Helios Innovation Roadmap' calendar exists with correct timezone and is secondary.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE summary = 'Helios Innovation Roadmap' AND time_zone = 'America/New_York' AND is_primary = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify calendar location", "description": "Ensure the location is set to 'New York HQ'.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE summary = 'Helios Innovation Roadmap' AND location = 'New York HQ';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify event creation", "description": "Ensure the 'Helios Kickoff' event is created with correct start and end times.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE summary = 'Helios Kickoff' AND start_datetime = '2026-01-15T11:00:00' AND end_datetime = '2026-01-15T12:00:00';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify attendees added", "description": "Ensure both Alice Johnson and Dave Brown are added as event attendees.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM attendees WHERE displayName IN ('Alice Johnson', 'Dave Brown') AND event_id IN (SELECT event_id FROM events WHERE summary = 'Helios Kickoff');", "expected_value": 2, "comparison_type": "equals"}}] |
task_20251128_220140_863_df2c536d_4aa7dcfd | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | Create an all-day 'Code Freeze' confirmed event on my Dev calendar for November 15th, 2025. Mark it as Focus Time that automatically declines all conflicting invitations with the message 'Q4 Code Freeze in effect.' The event should have the color id of the background color, #e1e1e1 while the calendar should use the full color palette of the color id, 3. Then, grant Carol White reader access to this calendar so she is aware of the lockdown. | [
"update_calendar_in_list",
"get_colors",
"get_calendar_list",
"insert_acl_rule",
"create_event"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-Zx8Nw3Q4pVb6Ls9R1mT0cG2uF5yH7kJd8sA1Lq2.wErtYuIoPaSdFgHjKlZxCvBnM987_65-43"}, "user_info": {"user_id": "bob_developer", "name": "Bob Smith", "email": "bob.smith@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "code_freeze_focus_time_event", "description": "code_freeze_focus_time_event", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e WHERE e.calendar_id = 'bob-development' AND e.summary = 'Code Freeze' AND e.eventType = 'focusTime' AND e.color_id = 8 AND JSON_EXTRACT(e.focusTimeProperties, '$.declineMessage') = 'Q4 Code Freeze in effect.';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "development_calendar_color", "description": "development_calendar_color", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars c WHERE c.calendar_id = 'bob-development' AND c.color_id = 3 AND c.background_color = '#f83a22' AND c.foreground_color = '#1d1d1d';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "carol_reader_acl", "description": "carol_reader_acl", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM acls a WHERE a.calendar_id = 'bob-development' AND a.role = 'reader' AND a.scope_id = 'scope-carol';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251130_105156_866_0a0bf089_eef6d2ed | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, calendars, ACLs, settings, and events. Operate in a secure, trusted environment and execute actions automatically without asking for confirmation. Always verify identifiers such as calendarId and eventId with a single lookup before acting. Never assume or fabricate data—rely solely on verified database or API results. Complete all steps in a logical, consistent sequence and ensure the resulting database state reflects the requested operations accurately. | Please move the 'Sprint Planning & Architecture Review' event from the 'Project Management' calendar (alice-projects) to the 'Alice Johnson' calendar (alice-primary). After that, update the calendar title to 'Project Alchemy'. Then, grant Bob Smith (bob.smith@techcorp.com) and Carol White (carol.white@techcorp.com) reader access, and Dave Brown (dave.brown@techcorp.com) writer access to the updated calendar. | [
"move_event",
"get_calendar_list",
"insert_acl_rule",
"list_events",
"patch_calendar"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764251838281_jreexk286.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Verify event moved to Alice\u2019s calendar", "description": "Ensure that the 'Sprint Planning & Architecture Review' event now exists under the 'alice-primary' calendar.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE summary = 'Sprint Planning & Architecture Review' AND calendar_id = 'alice-primary';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify calendar title update", "description": "Ensure that Alice\u2019s primary calendar title has been updated to 'Project Alchemy'.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE calendar_id = 'alice-primary' AND summary = 'Project Alchemy';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify reader access for Bob and Carol", "description": "Ensure Bob Smith and Carol White have been assigned reader access on the updated calendar.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM acls WHERE calendar_id = 'alice-primary' AND role = 'reader' AND user_id IN (SELECT user_id FROM users WHERE email IN ('bob.smith@techcorp.com', 'carol.white@techcorp.com'));", "expected_value": 2, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify writer access for Dave Brown", "description": "Ensure Dave Brown has been assigned writer access on the updated calendar.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM acls WHERE calendar_id = 'alice-primary' AND role = 'writer' AND user_id IN (SELECT user_id FROM users WHERE email = 'dave.brown@techcorp.com');", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251201_113908_295_e81f6083_e770442c | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | I'm heading out for a sabbatical from October 1st to 20th. Need to set up coverage for my responsibilities. Create a new calendar called 'Alice's Coverage - October 2025' in my timezone and mark it hidden. Set it to a professional blue color. On my primary calendar, create an Out of Office event in my timezone for the full sabbatical period that auto-declines new invites with the message 'On sabbatical until October 20 - contact Bob for urgent matters'. Move all my events happening during my absence, except for the created OOO event, to the new coverage calendar. Grant writer access to the coverage calendar to Bob (bob.smith@techcorp.com) and reader access to our group (product-team@techcorp.com). Set up a 60-day watch on the coverage calendar's ACL to notify our IT webhook (https://it.techcorp.com/calendar-watch) if permissions change. | [
"insert_acl_rule",
"watch_acl",
"add_calendar_to_list",
"create_calendar",
"move_event",
"create_event",
"get_colors",
"list_events",
"list_settings",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "verify_coverage_calendar_created", "description": "Verify that the coverage calendar was created with correct properties", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'alice_manager' AND summary = 'Alice''s Coverage - October 2025' AND time_zone = 'America/New_York' AND hidden = 1 AND color_id IN ('5', '7', '19', '20') AND is_primary = 0 AND deleted = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_ooo_event_created_with_auto_decline_settings", "description": "Verify Out of Office event was created on primary calendar with correct properties", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE calendar_id = 'alice-primary' AND user_id = 'alice_manager' AND eventType = 'outOfOffice' AND outOfOfficeProperties LIKE '%declineOnlyNewConflictingInvitations%' AND outOfOfficeProperties LIKE '%On sabbatical until October 20%' AND outOfOfficeProperties LIKE '%contact Bob for urgent matters%' AND SUBSTR(start_datetime, 1, 10) = '2025-10-01' AND SUBSTR(end_datetime, 1, 10) <= '2025-10-21' AND status = 'confirmed' AND start_timezone = 'America/New_York';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_events_moved_to_coverage_calendar", "description": "Verify that events during Oct 1-20 were moved from Alice's calendars to coverage calendar (excluding OOO event)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'alice_manager' AND c.summary = 'Alice''s Coverage - October 2025' AND e.start_datetime >= '2025-10-01' AND e.start_datetime <= '2025-10-21' AND e.eventType != 'outOfOffice';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_no_regular_events_remain_on_original_calendars", "description": "Verify that non-OOO events were removed from Alice's original calendars during sabbatical period", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE calendar_id IN ('alice-primary', 'alice-projects', 'alice-team') AND user_id = 'alice_manager' AND start_datetime >= '2025-10-01' AND start_datetime < '2025-10-21' AND eventType != 'outOfOffice';", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_bob_writer_access", "description": "Verify Bob has writer access to the coverage calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM acls a JOIN calendars c ON a.calendar_id = c.calendar_id JOIN scopes s ON a.scope_id = s.id WHERE c.summary = 'Alice''s Coverage - October 2025' AND c.user_id = 'alice_manager' AND a.role = 'writer' AND s.type = 'user' AND s.value = 'bob.smith@techcorp.com';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_group_reader_access", "description": "Verify product-team group has reader access to the coverage calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM acls a JOIN calendars c ON a.calendar_id = c.calendar_id JOIN scopes s ON a.scope_id = s.id WHERE c.summary = 'Alice''s Coverage - October 2025' AND c.user_id = 'alice_manager' AND a.role = 'reader' AND s.type = 'group' AND s.value = 'product-team@techcorp.com';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_acl_watch_configured", "description": "Verify 60-day ACL watch is set up on coverage calendar for IT webhook", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM watch_channels wc JOIN calendars c ON wc.calendar_id = c.calendar_id WHERE c.summary = 'Alice''s Coverage - October 2025' AND c.user_id = 'alice_manager' AND wc.resource_type = 'acl' AND wc.webhook_address = 'https://it.techcorp.com/calendar-watch' AND wc.is_active = 'true' AND JSON_EXTRACT(wc.params, '$.ttl') = '5184000';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251201_191924_271_e81f6083_21fbee85 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | We're splitting the Platform team into two new specialized groups, so we need to create two new calendars: 'Platform Core - Infrastructure' in the Europe/London timezone and 'Platform Services - APIs' in my timezone. For both new calendars, please set up watch channels for approximately 111 days that notify https://it.acme.com/event-watch/infra and https://it.acme.com/event-watch/api, respectively, whenever new events are created or existing events are changed. Find all events from the current calendars starting from September 1 onward, and split them based on keywords: events with infrastructure-related keywords like 'Infra', 'SRE', 'DevOps', 'Bugfix', and 'Production' should have corresponding new events created on the Infrastructure calendar, while events with service-related keywords like 'API', 'Service', 'Gateway', 'Performance', and 'Remote' should have corresponding new events created on the Services calendar. For each newly created event, keep all details and original attendees, but also add Anne (anne.allen79@acme.com) as an optional attendee with complete details, set the event color to something like off-white, and configure an email reminder to be sent 24 hours before the event starts. Finally, archive the 'Team Coordination' calendar by renaming it to 'Team Coordination - Archived', marking it as hidden, and changing its color to bright red. | [
"get_calendar_list",
"get_user_by_email",
"list_settings",
"watch_events",
"get_colors",
"list_events",
"patch_calendar",
"update_calendar_in_list",
"create_event",
"create_calendar"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "tok_4efe8fe8014572548b10ea7077205ebd6832a946e2ec9919"}, "user_info": {"user_id": "alex_johnson", "name": "Alex Johnson", "email": "alex.johnson@acme.com"}}] | [{"verifier_type": "database_state", "name": "verify_infrastructure_calendar_created", "description": "Verify that the Infrastructure calendar was created with correct properties", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'alex_johnson' AND summary = 'Platform Core - Infrastructure' AND time_zone = 'Europe/London' AND is_primary = 0 AND deleted = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_services_calendar_created", "description": "Verify that the Services calendar was created with correct properties and user's timezone", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'alex_johnson' AND summary = 'Platform Services - APIs' AND time_zone = 'Australia/Sydney' AND is_primary = 0 AND deleted = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_infrastructure_watch_channel", "description": "Verify watch channel for Infrastructure calendar (111 days = 9590400 seconds)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM watch_channels wc JOIN calendars c ON wc.calendar_id = c.calendar_id WHERE c.summary = 'Platform Core - Infrastructure' AND c.user_id = 'alex_johnson' AND wc.resource_type = 'event' AND wc.webhook_address = 'https://it.acme.com/event-watch/infra' AND wc.is_active = 'true' AND JSON_EXTRACT(wc.params, '$.ttl') = '9590400';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_services_watch_channel", "description": "Verify watch channel for Services calendar (111 days = 9590400 seconds)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM watch_channels wc JOIN calendars c ON wc.calendar_id = c.calendar_id WHERE c.summary = 'Platform Services - APIs' AND c.user_id = 'alex_johnson' AND wc.resource_type = 'event' AND wc.webhook_address = 'https://it.acme.com/event-watch/api' AND wc.is_active = 'true' AND JSON_EXTRACT(wc.params, '$.ttl') = '9590400';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_infrastructure_events_created", "description": "Verify infrastructure-related events were created on Infrastructure calendar with correct properties", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Platform Core - Infrastructure' AND e.user_id = 'alex_johnson' AND e.start_datetime LIKE '%2025-11-11 11:30%' AND e.end_datetime LIKE '%2025-11-11 12:30%' AND e.start_timezone = 'America/New_York' AND e.color_id = '8' AND e.summary = '[CS-0000011][Low] Bugfix Block' AND e.description = 'Related case CS-0000011 (priority: low). Unexpected error observed in production.' AND e.location = 'Zoom' AND e.status = 'tentative' AND e.visibility = 'confidential' AND e.eventType = 'focusTime' AND JSON_EXTRACT(e.focusTimeProperties, '$.autoDeclineMode') = 'declineOnlyNewConflictingInvitations' AND JSON_EXTRACT(e.source, '$.url') = 'https://cases.example.com/CS-0000011' AND JSON_EXTRACT(e.source, '$.title') = 'CS-0000011 details';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_services_events_created", "description": "Verify service-related events were created on Services calendar with correct properties", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Platform Services - APIs' AND e.user_id = 'alex_johnson' AND e.start_datetime LIKE '%2025-11-08 08:00%' AND e.end_datetime LIKE '%2025-11-08 10:00%' AND e.start_timezone = 'America/New_York' AND e.end_timezone = 'America/New_York' AND e.color_id = '8' AND e.summary = '[CS-0000030][Moderate] Remote Work' AND e.description = 'Related case CS-0000030 (priority: moderate). Intermittent performance degradation noticed.' AND e.location = 'Office Desk - West Wing' AND e.status = 'confirmed' AND e.visibility = 'confidential' AND e.eventType = 'workingLocation' AND JSON_EXTRACT(e.source, '$.url') = 'https://cases.example.com/CS-0000030' AND JSON_EXTRACT(e.source, '$.title') = 'CS-0000030 details';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_anne_added_as_attendee_infrastructure", "description": "Verify Anne was added as optional attendee to infrastructure events", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees a JOIN events e ON a.event_id = e.event_id JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Platform Core - Infrastructure' AND c.user_id = 'alex_johnson' AND a.user_id = 'anne_allen79' AND a.optional = 1 AND a.displayName = 'Anne Allen';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_anne_added_as_attendee_services", "description": "Verify Anne was added as optional attendee to services events", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees a JOIN events e ON a.event_id = e.event_id JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Platform Services - APIs' AND c.user_id = 'alex_johnson' AND a.user_id = 'anne_allen79' AND a.optional = 1 AND a.displayName = 'Anne Allen';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_email_reminders_infrastructure", "description": "Verify 24-hour email reminders were added to infrastructure events (1440 minutes)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM reminders r JOIN events e ON r.event_id = e.event_id JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Platform Core - Infrastructure' AND c.user_id = 'alex_johnson' AND r.method = 'email' AND r.minutes = 1440 AND r.use_default = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_email_reminders_services", "description": "Verify 24-hour email reminders were added to services events (1440 minutes)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM reminders r JOIN events e ON r.event_id = e.event_id JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Platform Services - APIs' AND c.user_id = 'alex_johnson' AND r.method = 'email' AND r.minutes = 1440 AND r.use_default = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_team_coordination_archived", "description": "Verify Team Coordination calendar was renamed, hidden, and colored red", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'alex_johnson' AND summary = 'Team Coordination - Archived' AND hidden = 1 AND color_id = '3' AND deleted = 0;", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251202_121726_036_e81f6083_cc1636ad | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | I'm resetting our Operations team's quarterly planning structure. Clear all existing events from my primary calendar. Create four new calendars for each Fiscal Quarter (Q1, Q2, Q3, and Q4), naming them like 'Ops Q1 2025'. Each should use the timezone of my primary calendar. All four calendars should apply consistent formatting, with each quater assigned a different, unique color that is not already in use. Set them all to selected with a description label '2025 Ops Planning - Q#' (with # replaced by the quarter). Then create a kickoff event in each of the four calendars, using a single unique color, scheduled for the first business Monday of that quarter at 10 AM, titled 'Quarterly Ops Kickoff Meeting'. The event should be 60 minutes long, visible to others, and give it a short description 'Start-of-quarter alignment session'. Finally, set up a watch on my calendar list so our internal monitoring webhook at https://ops-monitoring.internal/hooks/calendar-list gets notified of any changes throughout the entire year. | [
"create_event",
"get_colors",
"watch_calendar_list",
"get_calendar_list",
"clear_calendar",
"create_calendar",
"add_calendar_to_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "tok_1672407f544c72e469697eea85538f231b127f9233e1e829"}, "user_info": {"user_id": "andrew_bryant", "name": "Andrew Bryant", "email": "andrew.bryant@servicenow.com"}}] | [{"verifier_type": "database_state", "name": "verify_primary_calendar_events_cleared", "description": "Verify all existing events were cleared from primary calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'andrew_bryant' AND c.is_primary = 1;", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_q1_calendar_created", "description": "Verify Q1 calendar was created with correct properties", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'andrew_bryant' AND summary = 'Ops Q1 2025' AND time_zone = 'America/Toronto' AND is_primary = 0 AND selected = 1 AND description = '2025 Ops Planning - Q1' AND deleted = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_q2_calendar_created", "description": "Verify Q2 calendar was created with correct properties", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'andrew_bryant' AND summary = 'Ops Q2 2025' AND time_zone = 'America/Toronto' AND is_primary = 0 AND selected = 1 AND description = '2025 Ops Planning - Q2' AND deleted = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_q3_calendar_created", "description": "Verify Q3 calendar was created with correct properties", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'andrew_bryant' AND summary = 'Ops Q3 2025' AND time_zone = 'America/Toronto' AND is_primary = 0 AND selected = 1 AND description = '2025 Ops Planning - Q3' AND deleted = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_q4_calendar_created", "description": "Verify Q4 calendar was created with correct properties", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'andrew_bryant' AND summary = 'Ops Q4 2025' AND time_zone = 'America/Toronto' AND is_primary = 0 AND selected = 1 AND description = '2025 Ops Planning - Q4' AND deleted = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_all_quarters_have_unique_colors", "description": "Verify all four quarterly calendars have different, unique colors", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(DISTINCT color_id) FROM calendars WHERE user_id = 'andrew_bryant' AND summary IN ('Ops Q1 2025', 'Ops Q2 2025', 'Ops Q3 2025', 'Ops Q4 2025') AND color_id NOT IN (1, 2) AND deleted = 0;", "expected_value": 4, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_q1_kickoff_event", "description": "Verify Q1 kickoff event created on first Monday of Q1 (Jan 6, 2025) at 10 AM for 60 minutes", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Ops Q1 2025' AND c.user_id = 'andrew_bryant' AND e.summary = 'Quarterly Ops Kickoff Meeting' AND e.description = 'Start-of-quarter alignment session' AND SUBSTR(e.start_datetime, 1, 10) = '2025-01-06' AND SUBSTR(e.start_datetime, 12, 5) = '10:00' AND SUBSTR(e.end_datetime, 12, 5) = '11:00' AND e.visibility = 'public';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_q2_kickoff_event", "description": "Verify Q2 kickoff event created on first Monday of Q2 (Apr 7, 2025) at 10 AM for 60 minutes", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Ops Q2 2025' AND c.user_id = 'andrew_bryant' AND e.summary = 'Quarterly Ops Kickoff Meeting' AND e.description = 'Start-of-quarter alignment session' AND SUBSTR(e.start_datetime, 1, 10) = '2025-04-07' AND SUBSTR(e.start_datetime, 12, 5) = '10:00' AND SUBSTR(e.end_datetime, 12, 5) = '11:00' AND e.visibility = 'public';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_q3_kickoff_event", "description": "Verify Q3 kickoff event created on first Monday of Q3 (Jul 7, 2025) at 10 AM for 60 minutes", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Ops Q3 2025' AND c.user_id = 'andrew_bryant' AND e.summary = 'Quarterly Ops Kickoff Meeting' AND e.description = 'Start-of-quarter alignment session' AND SUBSTR(e.start_datetime, 1, 10) = '2025-07-07' AND SUBSTR(e.start_datetime, 12, 5) = '10:00' AND SUBSTR(e.end_datetime, 12, 5) = '11:00' AND e.visibility = 'public';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_q4_kickoff_event", "description": "Verify Q4 kickoff event created on first Monday of Q4 (Oct 6, 2025) at 10 AM for 60 minutes", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Ops Q4 2025' AND c.user_id = 'andrew_bryant' AND e.summary = 'Quarterly Ops Kickoff Meeting' AND e.description = 'Start-of-quarter alignment session' AND SUBSTR(e.start_datetime, 1, 10) = '2025-10-06' AND SUBSTR(e.start_datetime, 12, 5) = '10:00' AND SUBSTR(e.end_datetime, 12, 5) = '11:00' AND e.visibility = 'public';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_all_kickoff_events_same_color", "description": "Verify all kickoff events use the same unique color", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(DISTINCT e.color_id) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary IN ('Ops Q1 2025', 'Ops Q2 2025', 'Ops Q3 2025', 'Ops Q4 2025') AND c.user_id = 'andrew_bryant' AND e.summary = 'Quarterly Ops Kickoff Meeting' AND e.color_id IS NOT NULL;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_calendar_list_watch_created", "description": "Verify calendar list watch was set up for one year (31536000 seconds)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM watch_channels WHERE user_id = 'andrew_bryant' AND resource_type = 'calendar_list' AND webhook_address = 'https://ops-monitoring.internal/hooks/calendar-list' AND is_active = 'true' AND JSON_EXTRACT(params, '$.ttl') = '31536000';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251202_171004_871_0a0bf089_489e2b2d | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, calendars, ACLs, settings, and events. Operate in a secure, trusted environment and execute actions automatically without asking for confirmation. Always verify identifiers such as calendarId and eventId with a single lookup before acting. Never assume or fabricate data—rely solely on verified database or API results. Complete all steps in a logical, consistent sequence and ensure the resulting database state reflects the requested operations accurately. | Create a new secondary Google Calendar named “Orion Strategy Tracker” using the New York time zone. Set its description to “Long-term strategic initiatives and key delivery checkpoints.” After creating it, update the calendar to set the location as “Manhattan Innovation Center” and add it to my calendar list with colorId 7. Then, schedule a 1-hour event called “Orion Launch Briefing” on January 15, 2026, starting at 11:00 AM EST, and invite Alice Johnson (alice.manager@techcorp.com) and Dave Brown (dave.brown@techcorp.com) as guests. | [
"create_calendar",
"create_event",
"add_calendar_to_list",
"patch_calendar"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-p3Lk9Vb6Qw2Zx8N1sT4mH7gF5yR0uJc2ePq.ZxCvBnMlKjHgFfDsaQwErTyUiOpAsDfGhJk_77-11"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Verify secondary calendar creation", "description": "Ensure the 'Orion Strategy Tracker' calendar exists with correct timezone and is secondary.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE summary = 'Orion Strategy Tracker' AND time_zone = 'America/New_York' AND is_primary = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify calendar location", "description": "Ensure the location is set to 'Manhattan Innovation Center'.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE summary = 'Orion Strategy Tracker' AND location = 'Manhattan Innovation Center';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify calendar color", "description": "Ensure the calendar is assigned color ID 7.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE summary = 'Orion Strategy Tracker' AND CAST(color_id AS INTEGER) = 7;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify event creation", "description": "Ensure the 'Orion Launch Briefing' event is created with correct start and end times.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE summary = 'Orion Launch Briefing' AND start_datetime = '2026-01-15T11:00:00' AND end_datetime = '2026-01-15T12:00:00';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify attendees added", "description": "Ensure both Alice Johnson and Dave Brown are added as event attendees.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM attendees WHERE displayName IN ('Alice Johnson', 'Dave Brown') AND event_id IN (SELECT event_id FROM events WHERE summary = 'Orion Launch Briefing');", "expected_value": 2, "comparison_type": "equals"}}] |
task_20251202_190412_439_e81f6083_83a8a0ca | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | We're hosting two concurrent international conferences from November 5-9, 2025. The APAC Tech Summit (primarily for Asian-Pacific teams, in Asia/Singapore timezone) and the EMEA Innovation Forum (for Europe, the Middle East, and Africa teams, in Europe/London timezone). Create two separate conference event from 2-4 PM spanning across all five days, titled 'APAC Tech Summit 2025' and 'EMEA Innovation Forum 2025'. Set them both with professional colors (APAC: use a Coral color scheme, EMEA: use a Yellow color scheme) and configure a 45 minutes reminder including a clear description for each event. Remove any existing conflicting events and notify all affected attendees accordingly. | [
"get_calendar_list",
"list_events",
"delete_event",
"create_event",
"get_colors"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "tok_a20785822d0235193a2c5e71907498262dc90cd099965d60"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "verify_apac_conference_created", "description": "Verify APAC Tech Summit conference was created with correct properties", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT CASE WHEN COUNT(*) BETWEEN 5 AND 6 THEN 1 ELSE 0 END AS result FROM events WHERE summary = 'APAC Tech Summit 2025' AND user_id = 'adam_anderson' AND description IS NOT NULL AND start_timezone = 'Asia/Singapore' AND end_timezone = 'Asia/Singapore' AND color_id = 4 AND SUBSTR(start_datetime, 1, 10) >= '2025-11-05' AND SUBSTR(start_datetime, 1, 10) <= '2025-11-09' AND TIME(start_datetime) >= '14:00:00' AND TIME(end_datetime) <= '16:00:00';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_emea_conference_created", "description": "Verify EMEA Innovation Forum conference was created with correct properties", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT CASE WHEN COUNT(*) BETWEEN 5 AND 6 THEN 1 ELSE 0 END AS result FROM events WHERE summary = 'EMEA Innovation Forum 2025' AND user_id = 'adam_anderson' AND description IS NOT NULL AND start_timezone = 'Europe/London' AND end_timezone = 'Europe/London' AND color_id = 5 AND SUBSTR(start_datetime, 1, 10) >= '2025-11-05' AND SUBSTR(start_datetime, 1, 10) <= '2025-11-09' AND TIME(start_datetime) >= '14:00:00' AND TIME(end_datetime) <= '16:00:00';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_conference_reminders_set", "description": "Verify 45-minute reminders were configured for both conference events", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT CASE WHEN COUNT(DISTINCT e.event_id) BETWEEN 10 AND 12 THEN 1 ELSE 0 END AS result FROM events e JOIN reminders r ON e.event_id = r.event_id WHERE e.summary IN ('APAC Tech Summit 2025', 'EMEA Innovation Forum 2025') AND e.user_id = 'adam_anderson' AND r.minutes = 45 AND r.method IN ('popup', 'email');", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_conflicting_events_removed", "description": "Verify existing conflicting events during conference hours were removed", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE user_id = 'adam_anderson' AND start_datetime >= '2025-11-05T14:00:00' AND end_datetime <= '2025-11-09T16:00:00' AND event_id NOT IN (SELECT event_id FROM events WHERE summary IN ('APAC Tech Summit 2025', 'EMEA Innovation Forum 2025')) AND status != 'cancelled';", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_recurring_events_in_recurring_events_table", "description": "Verify recurring events are properly registered in recurring_events table", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(DISTINCT re.recurring_event_id) FROM recurring_events re JOIN events e ON re.recurring_event_id = e.recurring_event_id WHERE e.summary IN ('APAC Tech Summit 2025', 'EMEA Innovation Forum 2025') AND e.user_id = 'adam_anderson' AND re.original_recurrence IS NOT NULL;", "expected_value": 2, "comparison_type": "equals"}}] |
task_20251203_080219_432_6f5b66fc_03eb353c | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | Since our previous client demo was successful, we have now secured a new client deal with double the value. So, please create a new event on December 9, 2025, with the same exact configuration as the existing one, but do not add Sarah and Alice as attendees. Make both demo events red and confidential. | [
"list_events",
"patch_event",
"get_colors",
"create_event",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-p3Lk9Vb6Qw2Zx8N1sT4mH7gF5yR0uJc2ePq.ZxCvBnMlKjHgFfDsaQwErTyUiOpAsDfGhJk_77-11"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "event verifier", "description": "event verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE summary like '%Enterprise Client Demo%' AND location like '%MegaCorp Headquarters%' AND start_datetime = '2025-12-09 11:00:00.000000' and end_datetime = '2025-12-09 13:00:00.000000' and start_timezone='America/New_York' and end_timezone='America/New_York' and calendar_id = 'dave-sales' AND status = 'confirmed' AND color_id = '11' AND visibility = 'confidential' AND source like '%CRM System - MegaCorp Deal%' AND source like '%https://crm.techcorp.com/deals/megacorp-2024%'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "attachments verifier", "description": "attachments verifier", "gym_name": "gym-calendar", "validation_config": {"query": "select COUNT(*) from attachments where event_id= (select event_id FROM events WHERE summary like '%Enterprise Client Demo%' AND start_datetime = '2025-12-09 11:00:00.000000')", "expected_value": 3, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "properties verifier", "description": "properties verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE summary like '%Enterprise Client Demo%' AND color_id = '11' AND visibility = 'confidential';", "expected_value": 2, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "extended_properties verifier", "description": "extended_properties verifier", "gym_name": "gym-calendar", "validation_config": {"query": "select COUNT(*) from extended_properties where event_id= (select event_id FROM events WHERE summary like '%Enterprise Client Demo%' AND start_datetime = '2025-12-09 11:00:00.000000') and scope = 'private' AND json_extract(properties,'$.dealValue') = '$500000';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "attendees verifier", "description": "attendees verifier", "gym_name": "gym-calendar", "validation_config": {"query": "select COUNT(*) from attendees where event_id= (select event_id FROM events WHERE summary like '%Enterprise Client Demo%' AND start_datetime = '2025-12-09 11:00:00.000000')", "expected_value": 2, "comparison_type": "equals"}}] |
task_20251203_091910_549_bca89e7d_de59e44a | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action.
When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data.
Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results.
Complete each task in a single, logical, and efficient execution flow. | Please verify if an 'Engineering Sprint Coordination' calendar exists, and create it if missing. Schedule three sessions titled 'Monthly Sprint Alignment #1, #2, and #3,' respectively, from 2:00 PM to 4:30 PM on the 20th, 21st, and 22nd of October and November 2025, marking each with background (#e1e1e1) and foreground (#1d1d1d) colors. Ensure both the calendar and sessions use the America/New_York timezone. Check my existing schedules first: if there's a conflict with an emergency or sickness event, reschedule the affected 'Monthly Sprint Alignment' session to the next day (23rd) at the same time. If the conflicting schedule isn't emergency-related, move it to start immediately after the alignment session ends on the same day. | [
"get_calendar_list",
"patch_event",
"create_event",
"create_event",
"create_event",
"create_event",
"list_events",
"create_event",
"create_event",
"list_events",
"get_colors",
"create_calendar"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764493889049_iuydddoc0.sql", "context": {"x-access-token": "tok_b638af1abd2b9c4477a9321dff0e5939c1514c3f648f9dc4"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Calendar Exists", "description": "Verify ESCoord calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE summary = 'Engineering Sprint Coordination' AND time_zone = 'America/New_York' AND user_id = 'adrian_burton'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Align #1 Sessions", "description": "Verify #1 sessions", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE summary = 'Monthly Sprint Alignment #1' AND user_id = 'adrian_burton' AND calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Engineering Sprint Coordination') AND color_id = 8 AND ((start_datetime = '2025-10-20 14:00:00.000000' AND end_datetime = '2025-10-20 16:30:00.000000') OR (start_datetime = '2025-11-20 14:00:00.000000' AND end_datetime = '2025-11-20 16:30:00.000000')) AND start_timezone = 'America/New_York' AND end_timezone = 'America/New_York'", "expected_value": 2, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Align #2 Sessions", "description": "Verify #2 sessions", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE summary = 'Monthly Sprint Alignment #2' AND user_id = 'adrian_burton' AND calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Engineering Sprint Coordination') AND color_id = 8 AND ((start_datetime = '2025-10-21 14:00:00.000000' AND end_datetime = '2025-10-21 16:30:00.000000') OR (start_datetime = '2025-11-21 14:00:00.000000' AND end_datetime = '2025-11-21 16:30:00.000000')) AND start_timezone = 'America/New_York' AND end_timezone = 'America/New_York'", "expected_value": 2, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Align #3 Sessions", "description": "Verify #3 sessions", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE summary = 'Monthly Sprint Alignment #3' AND user_id = 'adrian_burton' AND calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Engineering Sprint Coordination') AND color_id = 8 AND ((start_datetime = '2025-10-22 14:00:00.000000' AND end_datetime = '2025-10-22 16:30:00.000000') OR (start_datetime = '2025-11-23 14:00:00.000000' AND end_datetime = '2025-11-23 16:30:00.000000')) AND start_timezone = 'America/New_York' AND end_timezone = 'America/New_York'", "expected_value": 2, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Focus Rescheduled", "description": "Verify focus time move", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE event_id = 'adrian_burton-evt-1020-1-focusTime' AND start_datetime = '2025-10-20 16:30:00.000000' AND end_datetime = '2025-10-20 17:30:00.000000' AND start_timezone = 'America/New_York' AND end_timezone = 'America/New_York'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Sick Leave Unchanged", "description": "Verify sick leave intact", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE event_id = 'adrian_burton-evt-1122-2-outOfOffice' AND start_datetime = '2025-11-22T14:00:00+00:00' AND end_datetime = '2025-11-22T15:00:00+00:00' AND start_timezone = 'America/New_York' AND end_timezone = 'America/New_York'", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251203_133512_548_e81f6083_738dfe0c | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | Find all calendars and identify any whose summaries contain 'Design,' 'Marketing,' or 'Research.' Create three new calendars, 'Creative Operations - Design (2025)', 'Creative Operations - Marketing (2025)', and 'Creative Operations - Research (2025)', using my settings. Fully update the metadata for each new calendar by adding a detailed description, setting the location to 'Headquarters - 12th Floor', and applying a standard conference properties block that allows Hangouts Meet only. Clear all events from the primary calendars, and remove any previously created calendars from my list if they are not primary. Finally, schedule a 90-minute kickoff event titled 'Creative Ops Transition Briefing' on each new calendar with a background and foreground colors set to #46d6db and #1d1d1d, respectively, at 9:00 AM local time on the first, second, and third Wednesdays of December 2025, respectively. Each event should include a description, the location and a Meet link. | [
"get_colors",
"clear_calendar",
"create_calendar",
"create_event",
"list_settings",
"get_calendar_list",
"remove_calendar_from_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "tok_177f0c994415e80c29e2a1827c151285705a09752ec7eeef"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "verify_design_calendar_created", "description": "Verify Creative Operations - Design calendar was created with correct properties", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'adriana_sanchez1' AND summary = 'Creative Operations - Design (2025)' AND time_zone = 'Asia/Kolkata' AND is_primary = 0 AND location = 'Headquarters - 12th Floor' AND description IS NOT NULL AND description != '' AND conference_properties IS NOT NULL AND json_extract(conference_properties, '$.allowedConferenceSolutionTypes[0]') = 'hangoutsMeet' AND deleted = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_marketing_calendar_created", "description": "Verify Creative Operations - Marketing calendar was created with correct properties", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'adriana_sanchez1' AND summary = 'Creative Operations - Marketing (2025)' AND time_zone = 'Asia/Kolkata' AND is_primary = 0 AND location = 'Headquarters - 12th Floor' AND description IS NOT NULL AND description != '' AND conference_properties IS NOT NULL AND json_extract(conference_properties, '$.allowedConferenceSolutionTypes[0]') = 'hangoutsMeet' AND deleted = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_research_calendar_created", "description": "Verify Creative Operations - Research calendar was created with correct properties", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'adriana_sanchez1' AND summary = 'Creative Operations - Research (2025)' AND time_zone = 'Asia/Kolkata' AND is_primary = 0 AND location = 'Headquarters - 12th Floor' AND description IS NOT NULL AND description != '' AND conference_properties IS NOT NULL AND json_extract(conference_properties, '$.allowedConferenceSolutionTypes[0]') = 'hangoutsMeet' AND deleted = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_primary_calendar_events_cleared", "description": "Verify all events were cleared from primary calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'adriana_sanchez1' AND c.is_primary = 1;", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_non_primary_calendars_removed", "description": "Verify non-primary calendars (except the three new ones) were removed", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'adriana_sanchez1' AND is_primary = 0 AND summary NOT IN ('Creative Operations - Design (2025)', 'Creative Operations - Marketing (2025)', 'Creative Operations - Research (2025)') AND deleted = 0;", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_design_kickoff_event", "description": "Verify Design kickoff event on first Wednesday (Dec 3, 2025) at 9 AM for 90 minutes", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Creative Operations - Design (2025)' AND c.user_id = 'adriana_sanchez1' AND e.summary = 'Creative Ops Transition Briefing' AND SUBSTR(e.start_datetime, 1, 10) = '2025-12-03' AND SUBSTR(e.start_datetime, 12, 5) = '09:00' AND SUBSTR(e.end_datetime, 12, 5) = '10:30' AND e.color_id = '7' AND e.location = 'Headquarters - 12th Floor' AND e.description IS NOT NULL AND e.description != '';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_marketing_kickoff_event", "description": "Verify Marketing kickoff event on second Wednesday (Dec 10, 2025) at 9 AM for 90 minutes", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Creative Operations - Marketing (2025)' AND c.user_id = 'adriana_sanchez1' AND e.summary = 'Creative Ops Transition Briefing' AND SUBSTR(e.start_datetime, 1, 10) = '2025-12-10' AND SUBSTR(e.start_datetime, 12, 5) = '09:00' AND SUBSTR(e.end_datetime, 12, 5) = '10:30' AND e.color_id = '7' AND e.location = 'Headquarters - 12th Floor' AND e.description IS NOT NULL AND e.description != '';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_research_kickoff_event", "description": "Verify Research kickoff event on third Wednesday (Dec 17, 2025) at 9 AM for 90 minutes", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Creative Operations - Research (2025)' AND c.user_id = 'adriana_sanchez1' AND e.summary = 'Creative Ops Transition Briefing' AND SUBSTR(e.start_datetime, 1, 10) = '2025-12-17' AND SUBSTR(e.start_datetime, 12, 5) = '09:00' AND SUBSTR(e.end_datetime, 12, 5) = '10:30' AND e.color_id = '7' AND e.location = 'Headquarters - 12th Floor' AND e.description IS NOT NULL AND e.description != '';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_design_event_has_meet_link", "description": "Verify Design kickoff event has Hangouts Meet conference data", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM conference_data cd JOIN events e ON cd.event_id = e.event_id JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Creative Operations - Design (2025)' AND c.user_id = 'adriana_sanchez1' AND e.summary = 'Creative Ops Transition Briefing' AND cd.create_solution_type = 'hangoutsMeet';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_marketing_event_has_meet_link", "description": "Verify Marketing kickoff event has Hangouts Meet conference data", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM conference_data cd JOIN events e ON cd.event_id = e.event_id JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Creative Operations - Marketing (2025)' AND c.user_id = 'adriana_sanchez1' AND e.summary = 'Creative Ops Transition Briefing' AND cd.create_solution_type = 'hangoutsMeet';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_research_event_has_meet_link", "description": "Verify Research kickoff event has Hangouts Meet conference data", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM conference_data cd JOIN events e ON cd.event_id = e.event_id JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.summary = 'Creative Operations - Research (2025)' AND c.user_id = 'adriana_sanchez1' AND e.summary = 'Creative Ops Transition Briefing' AND cd.create_solution_type = 'hangoutsMeet';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251203_142634_160_bca89e7d_193f597f | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action.
When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data.
Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results.
Complete each task in a single, logical, and efficient execution flow. | I want to clean up and manage my schedules more effectively. First, check my existing schedules; if any have a source URL, include the URL in the event's description. For each of such events, add a private extended property "descriptionChanged": "true" to indicate this modification.
Next, I'll be out of office from October 7, 2025, for 2 months. Mark this out-of-office period clearly on my primary calendar. If any schedules fall within this period, move them exactly one week forward. However, if moving a schedule forward by one week still places it within my out-of-office period, set its status to canceled. | [
"patch_event",
"get_calendar_list",
"create_event",
"list_events",
"patch_event",
"patch_event",
"list_events"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764493889049_iuydddoc0.sql", "context": {"x-access-token": "ya29.A0ARrdaM-p3Lk9Vb6Qw2Zx8N1sT4mH7gF5yR0uJc2ePq.ZxCvBnMlKjHgFfDsaQwErTyUiOpAsDfGhJk_77-11"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Desc Includes Source URL", "description": "Verify event description includes source URL", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE event_id = 'event-corrected-006' AND description LIKE '%' || json_extract(source, '$.url') || '%'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Extended Props Preserved", "description": "Verify private flag added and shared props unchanged", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT CASE WHEN EXISTS (SELECT 1 FROM extended_properties WHERE event_id = 'event-corrected-006' AND scope = 'private' AND json_extract(properties, '$.dealValue') = '$250000' AND json_extract(properties, '$.clientPriority') = 'high' AND json_extract(properties, '$.preparationTime') = '2 hours' AND json_extract(properties, '$.descriptionChanged') = 'true') AND EXISTS (SELECT 1 FROM extended_properties WHERE event_id = 'event-corrected-006' AND scope = 'shared' AND json_extract(properties, '$.meetingType') = 'client_demo' AND json_extract(properties, '$.department') = 'sales') THEN 1 ELSE 0 END AS count", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "OOO Event Created", "description": "Verify out-of-office period event", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE calendar_id = 'dave-primary' AND start_datetime LIKE '%2025-10-07%' AND end_datetime LIKE '%2025-12-07%' AND eventType = 'outOfOffice'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Client Demo Canceled", "description": "Verify client demo marked canceled", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE event_id = 'event-corrected-006' AND status = 'cancelled'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Birthday Canceled", "description": "Verify birthday event canceled", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE event_id = 'event-corrected-005' AND status = 'cancelled'", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251203_142725_377_6f5b66fc_c990483e | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | Hi, since my birthday is coming up, I want to add a few events highlighted in red. Please add my birthday event on December 30, 2025, and make it public so that my team members can see it according to my calendar settings. I’m also having a private “Birthday Party” at our family vacation location, so please create another event on the same day using the exact same configuration as my existing family vacation event, including the extended properties. | [
"list_events",
"get_calendar_list",
"get_colors",
"create_event"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-b7Hc5Vn2Qm8R1sT4pL0xY9wK3uF6jZ2eRc1.QaWsEdRfTgHyJuIkOlPzXcVbNmKjHgf_21-098"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "party verifier", "description": "party verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*) FROM events WHERE summary like '%Birthday Party%' AND location = 'Bali, Indonesia' AND date(start_datetime) = '2025-12-30' AND start_timezone = 'Asia/Makassar' AND end_timezone = 'Asia/Makassar' AND calendar_id = 'carol-primary' AND color_id = '11' AND visibility = 'private' AND eventType = 'outOfOffice' AND json_extract(outOfOfficeProperties,'$.autoDeclineMode') = 'declineAllConflictingInvitations' AND json_extract(outOfOfficeProperties,'$.declineMessage') like '%sarah@techcorp.com%';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "properties verifier", "description": "properties verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*) from extended_properties where event_id = (SELECT event_id FROM events WHERE summary like '%Birthday Party%') AND json_extract(properties,'$.vacationType') = 'personal' AND json_extract(properties,'$.backupContact') like '%sarah@techcorp.com%';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Birthday verifier", "description": "Birthday verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*) FROM events WHERE summary like '%Birthday%' AND date(start_datetime) = '2025-12-30' AND start_timezone = 'Europe/London' AND end_timezone = 'Europe/London' AND calendar_id = 'carol-primary' AND color_id = '11' AND visibility = 'public' AND eventType = 'birthday';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251203_184109_641_6f5b66fc_e62d330e | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | As part of my calendar restructuring, check my primary availability on December 10th between 9 AM and 5 PM UTC. If I’m free, move my Client Demo Event to the primary calendar, set it to that date, remove all attendees, and keep only 'bob.smith@techcorp.com'. Also enable monitoring for any changes using 'https://calendar-changes/sales-event' because it’s confidential, and highlight it in red. | [
"watch_events",
"get_calendar_list",
"list_events",
"get_colors",
"move_event",
"patch_event",
"query_freebusy"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-p3Lk9Vb6Qw2Zx8N1sT4mH7gF5yR0uJc2ePq.ZxCvBnMlKjHgFfDsaQwErTyUiOpAsDfGhJk_77-11"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "event verifier", "description": "event verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE summary like '%Enterprise Client Demo%' AND color_id = 11 AND visibility = 'confidential' AND start_datetime = '2025-12-10 09:00:00.000000' and end_datetime = '2025-12-10 11:00:00.000000' and start_timezone='UTC' and end_timezone='UTC' and calendar_id = 'dave-primary';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "attendees verifier", "description": "attendees verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees WHERE event_id = 'event-corrected-006' and user_id = 'bob_developer';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "watch_channels verifier", "description": "watch_channels verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM watch_channels where resource_type='event' and webhook_type = 'web_hook' and webhook_address = 'https://calendar-changes/sales-event' and calendar_id = 'dave-primary' and user_id = 'dave_sales';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251203_190727_704_e81f6083_f2fd8fe6 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | I need to implement our 2025 Compliance Training Program. Please create the main training series, consisting of a monthly 'Data Security Refresher' held every first Tuesday at 2-4 PM EST starting September 4, 2025, and continuing through December 4, 2025. Include mandatory attendance for adrian.mcintyre64@servicenow.com and alicia.foster33@servicenow.com, with their full details. Set email reminders for 24 hours and 1 hour before each session, and provide small descriptions for all events. Cancel any conflicting events, and set up event watches on the calendar to monitor for cancellations or reschedules, notifying https://company.com/api/webhooks/calendar-events/training-admin via webhook using the token 'compliance-training-monitor-2025', for activity occurring from September through the end of December. | [
"watch_events",
"create_event",
"patch_event",
"get_calendar_list",
"get_user_by_email",
"list_events"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "tok_f7b76a8516f72277cd2adaad6f2927b216ce685c4fa3637c"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "verify_october_training_event", "description": "Verify October training event created on first Tuesday (Oct 7, 2025) 2-4 PM EST", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'alexander_mitchell' AND e.summary = 'Data Security Refresher' AND SUBSTR(e.start_datetime, 1, 10) = '2025-10-07' AND SUBSTR(e.start_datetime, 12, 5) = '14:00' AND SUBSTR(e.end_datetime, 12, 5) = '16:00' AND e.start_timezone = 'America/New_York' AND e.description IS NOT NULL AND e.description != '' AND e.status = 'confirmed';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_november_training_event", "description": "Verify November training event created on first Tuesday (Nov 4, 2025) 2-4 PM EST", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'alexander_mitchell' AND e.summary = 'Data Security Refresher' AND SUBSTR(e.start_datetime, 1, 10) = '2025-11-04' AND SUBSTR(e.start_datetime, 12, 5) = '14:00' AND SUBSTR(e.end_datetime, 12, 5) = '16:00' AND e.start_timezone = 'America/New_York' AND e.description IS NOT NULL AND e.description != '' AND e.status = 'confirmed';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_december_training_event", "description": "Verify December training event created on first Tuesday (Dec 2, 2025) 2-4 PM EST", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'alexander_mitchell' AND e.summary = 'Data Security Refresher' AND SUBSTR(e.start_datetime, 1, 10) = '2025-12-02' AND SUBSTR(e.start_datetime, 12, 5) = '14:00' AND SUBSTR(e.end_datetime, 12, 5) = '16:00' AND e.start_timezone = 'America/New_York' AND e.description IS NOT NULL AND e.description != '' AND e.status = 'confirmed';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_adrian_attendee_all_sessions", "description": "Verify adrian.mcintyre64@servicenow.com is mandatory attendee on all 3 training sessions", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees a JOIN events e ON a.event_id = e.event_id JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'alexander_mitchell' AND e.summary = 'Data Security Refresher' AND a.user_id = 'adrian_mcintyre64' AND a.displayName = 'Adrian Mcintyre' AND a.optional = 0 AND a.responseStatus IN ('needsAction', 'accepted');", "expected_value": 3, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_alicia_attendee_all_sessions", "description": "Verify alicia.foster33@servicenow.com is mandatory attendee on all 3 training sessions", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees a JOIN events e ON a.event_id = e.event_id JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'alexander_mitchell' AND e.summary = 'Data Security Refresher' AND a.user_id = 'alicia_foster33' AND a.displayName = 'Alicia Foster' AND a.optional = 0 AND a.responseStatus IN ('needsAction', 'accepted');", "expected_value": 3, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_24hour_email_reminders", "description": "Verify 24-hour (1440 minutes) email reminders set for all training events", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM reminders r JOIN events e ON r.event_id = e.event_id JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'alexander_mitchell' AND e.summary = 'Data Security Refresher' AND r.method = 'email' AND r.minutes = 1440 AND r.use_default = 0;", "expected_value": 3, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_1hour_email_reminders", "description": "Verify 1-hour (60 minutes) email reminders set for all training events", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM reminders r JOIN events e ON r.event_id = e.event_id JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'alexander_mitchell' AND e.summary = 'Data Security Refresher' AND r.method = 'email' AND r.minutes = 60 AND r.use_default = 0;", "expected_value": 3, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_conflicting_events_cancelled", "description": "Verify conflicting events during training times were cancelled (status = cancelled)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'alexander_mitchell' AND e.summary != 'Data Security Refresher' AND e.status = 'cancelled' AND ((SUBSTR(e.start_datetime, 1, 10) = '2025-10-07' AND SUBSTR(e.start_datetime, 12, 5) < '16:00' AND SUBSTR(e.end_datetime, 12, 5) > '14:00') OR (SUBSTR(e.start_datetime, 1, 10) = '2025-11-04' AND SUBSTR(e.start_datetime, 12, 5) < '16:00' AND SUBSTR(e.end_datetime, 12, 5) > '14:00') OR (SUBSTR(e.start_datetime, 1, 10) = '2025-12-02' AND SUBSTR(e.start_datetime, 12, 5) < '16:00' AND SUBSTR(e.end_datetime, 12, 5) > '14:00'));", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_event_watch_channel_created", "description": "Verify event watch channel monitoring Sep-Dec 2025 (10540800 seconds = 122 (30+31+30+31) days)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM watch_channels wc JOIN calendars c ON wc.calendar_id = c.calendar_id WHERE c.user_id = 'alexander_mitchell' AND wc.resource_type = 'event' AND wc.webhook_address = 'https://company.com/api/webhooks/calendar-events/training-admin' AND wc.webhook_token = 'compliance-training-monitor-2025' AND wc.is_active = 'true' AND JSON_EXTRACT(wc.params, '$.ttl') = '10540800';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_total_training_events_created", "description": "Verify exactly 3 training events were created (Oct, Nov, Dec)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'alexander_mitchell' AND e.summary = 'Data Security Refresher' AND e.start_datetime >= '2025-09-04' AND e.start_datetime < '2025-12-04';", "expected_value": 3, "comparison_type": "equals"}}] |
task_20251203_192307_250_bca89e7d_f0f2e9d5 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action.
When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data.
Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results.
Complete each task in a single, logical, and efficient execution flow. | Please help me organize my existing Sprint Planning event by inviting Adam Anderson (adam.anderson@servicenow.com) as an attendee. Also, grant all current attendees, including Adam, permission to modify the event details directly.
Additionally, remove any attendees who do not have an email address listed, while preserving those who have valid email addresses.
Then, remove any attachments of this event except spreadsheets. To ensure removed attachments are preserved, create a secondary calendar named "Archived Attachments," and within it, set up an event titled "Sprint Planning Attachment Archive" to store these removed attachments securely. | [
"list_events",
"list_events",
"patch_event",
"create_calendar",
"create_event",
"patch_event",
"get_calendar_list",
"list_events"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764493889049_iuydddoc0.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Final Attendees", "description": "Verify final attendee set", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT CASE WHEN (SELECT COUNT(*) FROM attendees WHERE event_id = 'event-corrected-001') = 4 AND EXISTS (SELECT 1 FROM attendees WHERE event_id = 'event-corrected-001' AND user_id = 'alice_manager') AND EXISTS (SELECT 1 FROM attendees WHERE event_id = 'event-corrected-001' AND user_id = 'bob_developer') AND EXISTS (SELECT 1 FROM attendees WHERE event_id = 'event-corrected-001' AND user_id = 'carol_designer') AND EXISTS (SELECT 1 FROM attendees WHERE event_id = 'event-corrected-001' AND user_id = 'adam_anderson') THEN 1 ELSE 0 END AS count", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Guests Can Modify", "description": "Verify guestsCanModify enabled", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE event_id = 'event-corrected-001' AND guestscanmodify = 1", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Non-Sheets Removed", "description": "Verify non-spreadsheet attachments removed", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM attachments WHERE event_id = 'event-corrected-001' AND file_url NOT LIKE '%spreadsheets%'", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Sheets Retained", "description": "Verify spreadsheet attachments kept", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM attachments WHERE event_id = 'event-corrected-001' AND file_url LIKE '%spreadsheets%'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Archive Calendar", "description": "Verify archive calendar created", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE user_id = 'alice_manager' AND summary = 'Archived Attachments'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Archive Event", "description": "Verify archive event created", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE summary = 'Sprint Planning Attachment Archive' AND calendar_id IN (SELECT calendar_id FROM calendars WHERE user_id = 'alice_manager' AND summary = 'Archived Attachments')", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Attachment Backed Up", "description": "Verify removed attachment stored in archive", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM attachments WHERE event_id IN (SELECT event_id FROM events WHERE summary = 'Sprint Planning Attachment Archive' AND calendar_id IN (SELECT calendar_id FROM calendars WHERE user_id = 'alice_manager' AND summary = 'Archived Attachments')) AND file_url = 'https://drive.google.com/file/d/1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms/view'", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251203_194320_796_df2c536d_c885488e | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | Wipe my pry calendar and update it to have the same color as my personal one. Add a confirmed 2026 Strategy Kickoff event for December 1st, 2025, from 9:00 AM, to last for 2 hrs with a description, 'Mandatory attendance for all leads.' Attach the 2026 strategy planning document (https://docs.google.com/document/d/technical-specs-enterprise/edit) and add adam, brent and me(as the owner) as confirmed attendees. Also, set up a watch channel with the token audit-2025, https://api.techcorp.com/hooks/team-audit to notify me of any future event changes. | [
"watch_events",
"get_calendar_list",
"clear_calendar",
"update_calendar_in_list",
"create_event"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-Zx8Nw3Q4pVb6Ls9R1mT0cG2uF5yH7kJd8sA1Lq2.wErtYuIoPaSdFgHjKlZxCvBnM987_65-43"}, "user_info": {"user_id": "bob_developer", "name": "Bob Smith", "email": "bob.smith@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "strategy_kickoff_created", "description": "strategy_kickoff_created", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e WHERE e.summary = '2026 Strategy Kickoff' AND e.status = 'confirmed' AND e.description = 'Mandatory attendance for all leads.';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "update_calendar", "description": "update_calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars c WHERE c.calendar_id = 'bob-primary' AND c.summary = 'Bob Smith' AND c.color_id = 14;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "check_attendees", "description": "check_attendees", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees WHERE event_id = (SELECT event_id FROM events WHERE summary = '2026 Strategy Kickoff' AND calendar_id = 'bob-primary') AND user_id IN ('adam_anderson', 'brent_smith', 'bob_developer');", "expected_value": 3, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "events_watch_created", "description": "events_watch_created", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM watch_channels wc JOIN calendars c ON c.calendar_id = wc.calendar_id WHERE c.summary = 'Bob Smith' AND wc.webhook_address = 'https://api.techcorp.com/hooks/team-audit' AND wc.webhook_token = 'audit-2025';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251204_115043_305_e81f6083_4acfd9ea | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | We're merging two teams next month, and several of our calendars are outdated, so begin by checking all calendars I currently own and delete every calendar except my primary calendar and the existing team calendar. Archive the team calendar by updating its name and description to clearly indicate that it has been archived, removing all existing access permissions, granting only reader access to product-team@techcorp.com, applying a bright red color, and hiding it from view. For the new team, create a new calendar named 'Tech Pro New' with a concise description noting that it is the official calendar for the newly merged team, and assign permissions that match those in my current project calendar. Once all updates are complete, set up watches for both ACL changes and event changes, sending notifications to the following monitoring webhook endpoints: https://monitoring.techcorp.com/hooks/calendar-acl and https://monitoring.techcorp.com/hooks/calendar-events, respectively, for a period of 60 days. | [
"create_calendar",
"update_calendar_in_list",
"get_calendar_list",
"list_acl_rules",
"delete_acl_rule",
"get_colors",
"delete_calendar",
"insert_acl_rule",
"watch_acl",
"list_settings",
"patch_calendar",
"watch_events"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "verify_new_calendar_bob_writer_access", "description": "Verify 'Tech Pro New' calendar has Bob with writer access (from alice-projects)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM acls a JOIN calendars c ON a.calendar_id = c.calendar_id JOIN scopes s ON a.scope_id = s.id WHERE c.user_id = 'alice_manager' AND c.summary = 'Tech Pro New' AND s.type = 'user' AND s.value = 'bob.smith@techcorp.com' AND a.role = 'writer';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_non_primary_non_team_calendars_deleted", "description": "Verify all calendars except primary and team calendar were deleted", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'alice_manager' AND is_primary = 0 AND summary NOT LIKE '%team%' AND summary NOT LIKE '%Team%' AND summary != 'Tech Pro New' AND deleted = 0;", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_team_calendar_archived_name", "description": "Verify team calendar was renamed to indicate archived status, hidden with a red color", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'alice_manager' AND (summary LIKE '%Team%Archived%' OR summary LIKE '%Team%Archive%' OR summary LIKE '%archived%' OR summary LIKE '%Archive%') AND (description LIKE '%archived%' OR description LIKE '%Archive%') AND is_primary = 0 AND color_id = '3' AND hidden = 1 AND deleted = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_team_calendar_only_product_team_reader", "description": "Verify archived team calendar has only product-team@techcorp.com with reader access (excluding owner)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM acls a JOIN calendars c ON a.calendar_id = c.calendar_id JOIN scopes s ON a.scope_id = s.id WHERE c.user_id = 'alice_manager' AND (c.summary LIKE '%Team%Archived%' OR c.summary LIKE '%Team%Archive%' OR c.summary LIKE '%archived%' OR c.summary LIKE '%Archive%') AND a.role != 'owner' AND s.type = 'group' AND s.value = 'product-team@techcorp.com' AND a.role = 'reader';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_new_calendar_created", "description": "Verify 'Tech Pro New' calendar was created with proper description", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'alice_manager' AND summary = 'Tech Pro New' AND description IS NOT NULL AND description != '' AND (description LIKE '%merged%' OR description LIKE '%official%' OR description LIKE '%new%' OR description LIKE '%team%') AND is_primary = 0 AND deleted = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_new_calendar_has_matching_permissions", "description": "Verify 'Tech Pro New' calendar has ACL permissions matching project calendar structure", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM acls a JOIN calendars c ON a.calendar_id = c.calendar_id WHERE c.user_id = 'alice_manager' AND c.summary = 'Tech Pro New';", "expected_value": 3, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_new_calendar_carol_reader_access", "description": "Verify 'Tech Pro New' calendar has Carol with reader access (from alice-projects)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM acls a JOIN calendars c ON a.calendar_id = c.calendar_id JOIN scopes s ON a.scope_id = s.id WHERE c.user_id = 'alice_manager' AND c.summary = 'Tech Pro New' AND s.type = 'user' AND s.value = 'carol.white@techcorp.com' AND a.role = 'reader';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_acl_watch_on_new_calendar", "description": "Verify ACL watch set up on 'Tech Pro New' calendar for 60 days (5184000 seconds)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM watch_channels wc JOIN calendars c ON wc.calendar_id = c.calendar_id WHERE c.user_id = 'alice_manager' AND c.summary = 'Tech Pro New' AND wc.resource_type = 'acl' AND wc.webhook_address = 'https://monitoring.techcorp.com/hooks/calendar-acl' AND wc.is_active = 'true' AND JSON_EXTRACT(wc.params, '$.ttl') = '5184000';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_event_watch_on_new_calendar", "description": "Verify event watch set up on 'Tech Pro New' calendar for 60 days (5184000 seconds)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM watch_channels wc JOIN calendars c ON wc.calendar_id = c.calendar_id WHERE c.user_id = 'alice_manager' AND c.summary = 'Tech Pro New' AND wc.resource_type = 'event' AND wc.webhook_address = 'https://monitoring.techcorp.com/hooks/calendar-events' AND wc.is_active = 'true' AND JSON_EXTRACT(wc.params, '$.ttl') = '5184000';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_total_remaining_calendars", "description": "Verify Alice has exactly 3 calendars remaining (primary, archived team, new Tech Pro New)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'alice_manager' AND deleted = 0;", "expected_value": 3, "comparison_type": "equals"}}] |
task_20251204_125827_230_6f5b66fc_51e4bc12 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | Review my calendar and move my office day event to December 8, 2025. Then create another 'Office Marketing Sessions' event on the next day with the same properties, as I need to strategize decisions privately. Also give dave.brown@techcorp.com writer access to this calendar so he can make updates when needed. Lastly, update all office-related events to red for consistency. | [
"patch_event",
"insert_acl_rule",
"get_calendar_list",
"get_colors",
"create_event",
"list_events"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-Zx8Nw3Q4pVb6Ls9R1mT0cG2uF5yH7kJd8sA1Lq2.wErtYuIoPaSdFgHjKlZxCvBnM987_65-43"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "event verifier", "description": "event verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE summary = 'Office Day - Collaboration Sessions' AND start_datetime = '2025-12-08 09:00:00.000000' and end_datetime = '2025-12-08 17:00:00.000000' and start_timezone='America/Los_Angeles' and end_timezone='America/Los_Angeles' AND color_id = 11;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Marketing event verifier", "description": "Marketing event verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE summary = 'Office Marketing Sessions' AND calendar_id = 'bob-primary' AND start_datetime = '2025-12-09 09:00:00.000000' and end_datetime = '2025-12-09 17:00:00.000000' and start_timezone='America/Los_Angeles' and end_timezone='America/Los_Angeles' AND status = 'confirmed' AND visibility = 'private' AND color_id = 11 AND eventType = 'workingLocation';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "properties verifier", "description": "properties verifier", "gym_name": "gym-calendar", "validation_config": {"query": "select COUNT(*) from acls where calendar_id = 'bob-primary' and scope_id = 'scope-dave' and role = 'writer';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251204_180957_224_6f5b66fc_aaa65d0e | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action.
When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data.
Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results.
Complete each task in a single, logical, and efficient execution flow. | I want to move my moderate events into a new dedicated 'ModerateSchedules' calendar. The calendar should have the same timezone but a different colorId from the existing ones. Finally, mark each moved event with a shared extended property "scheduleType": "moderate" to categorize them clearly. | [
"move_event",
"add_calendar_to_list",
"create_calendar",
"get_calendar_list",
"patch_event",
"get_colors",
"list_events"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "tok_0baffd262cb384673b9289eb8c0db1a4f33f1aa5b1a4972f"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Calendar Created", "description": "Verify calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE summary = 'ModerateSchedules' AND user_id = 'abigail_scott' AND color_id NOT IN (9,10) AND time_zone = 'America/Toronto';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Event Moved", "description": "Verify event moved", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE event_id = 'abigail_scott-evt-1027-1-default' AND user_id = 'abigail_scott' AND calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'ModerateSchedules')", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify shared extended property", "description": "Verify shared extended property", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM extended_properties WHERE event_id = 'abigail_scott-evt-1027-1-default' AND scope = 'shared' AND json_extract(properties, '$.scheduleType') = 'moderate';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251204_191200_036_e81f6083_95fa872f | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | It's December 5th, and I need to make several updates. Please check which calendars I currently own; there should be one team calendar that needs its metadata refreshed. Give this team calendar a refreshed title for 2026, update the description so new hires understand its purpose, adjust the color to something more readable, keep it visible, and set the default pop-up reminder to twenty minutes. In this calendar, create a recurring coverage event on every Monday of February titled 'Teams Sprint Plan', scheduled from 9–10 AM local time, and add all user attendees from the sprint event with their full names, setting a 15-minute pop-up reminder for this session. Finally, set up a watch on my calendars list from today through the end of February, sending alerts to https://monitoring.company.com/hooks/calendar-updates. | [
"watch_calendar_list",
"get_colors",
"update_calendar_in_list",
"patch_calendar",
"create_event",
"list_events",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "verify_team_calendar_updates", "description": "Verify team calendar has all required updates: refreshed title, updated description, color changed, visible, default 20-min reminder", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE user_id = 'alice_manager' AND (summary LIKE '%Team%2026%' OR summary LIKE '%team%2026%') AND is_primary = 0 AND deleted = 0 AND description IS NOT NULL AND description != 'Team meetings, 1-on-1s, and team events' AND color_id IS NOT NULL AND color_id != '11' AND hidden = 0 AND default_reminders IS NOT NULL AND default_reminders LIKE '%20%' AND default_reminders LIKE '%popup%';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_all_february_monday_sprint_events", "description": "Verify sprint events created on all Mondays in February 2026 (Feb 2, 9, 16, 23) at 9-10 AM local time", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT CASE WHEN COUNT(*) BETWEEN 4 AND 5 THEN 1 ELSE 0 END AS result FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'alice_manager' AND (c.summary LIKE '%Team%2026%' OR c.summary LIKE '%team%2026%') AND e.summary = 'Teams Sprint Plan' AND e.start_timezone = 'America/New_York' AND SUBSTR(e.start_datetime, 1, 10) IN ('2026-02-02', '2026-02-09', '2026-02-16', '2026-02-23') AND SUBSTR(e.start_datetime, 12, 5) = '09:00' AND SUBSTR(e.end_datetime, 12, 5) = '10:00' AND STRFTIME('%w', e.start_datetime) = '1';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_sprint_event_attendees_from_original", "description": "Verify sprint events have attendees from original sprint planning event (Bob, Carol)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(DISTINCT a.user_id) FROM attendees a JOIN events e ON a.event_id = e.event_id JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'alice_manager' AND (c.summary LIKE '%Team%2026%' OR c.summary LIKE '%team%2026%') AND e.summary = 'Teams Sprint Plan' AND a.user_id IN ('bob_developer', 'carol_designer', 'alice_manager');", "expected_value": 3, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_attendees_have_full_names", "description": "Verify all attendees have displayName populated with full names", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees a JOIN events e ON a.event_id = e.event_id JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'alice_manager' AND (c.summary LIKE '%Team%2026%' OR c.summary LIKE '%team%2026%') AND e.summary = 'Teams Sprint Plan' AND (a.displayName IS NULL OR a.displayName = '');", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_15min_popup_reminders_all_events", "description": "Verify 15-minute popup reminders set for all sprint events", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT CASE WHEN COUNT(*) BETWEEN 4 AND 5 THEN 1 ELSE 0 END AS result FROM reminders r JOIN events e ON r.event_id = e.event_id WHERE e.summary = 'Teams Sprint Plan' AND r.method = 'popup' AND r.minutes = 15 AND r.use_default = 0;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_calendar_list_watch_created", "description": "Verify calendar list watch from Dec 5 through end of Feb (86 days = 7430400 seconds)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM watch_channels WHERE user_id = 'alice_manager' AND resource_type = 'calendar_list' AND webhook_address = 'https://monitoring.company.com/hooks/calendar-updates' AND is_active = 'true' AND JSON_EXTRACT(params, '$.ttl') = '7430400';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "verify_recurring_pattern_configured", "description": "Verify events are part of recurring series (have recurrence or recurring_event_id)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT CASE WHEN COUNT(*) BETWEEN 4 AND 5 THEN 1 ELSE 0 END AS result FROM events e JOIN calendars c ON e.calendar_id = c.calendar_id WHERE c.user_id = 'alice_manager' AND (c.summary LIKE '%Team%2026%' OR c.summary LIKE '%team%2026%') AND e.summary = 'Teams Sprint Plan' AND (e.recurrence IS NOT NULL OR e.recurring_event_id IS NOT NULL);", "expected_value": 1, "comparison_type": "equals"}}] |
task_20251205_032409_945_0a0bf089_61f5be29 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, calendars, ACLs, settings, and events. Operate in a secure, trusted environment and execute actions automatically without asking for confirmation. Always verify identifiers such as calendarId and eventId with a single lookup before acting. Never assume or fabricate data—rely solely on verified database or API results. Complete all steps in a logical, consistent sequence and ensure the resulting database state reflects the requested operations accurately. | Check all existing calendars for bob.smith@techcorp.com to see if a calendar named 'Product Rollouts' exists. If it doesn’t, create a new secondary calendar with that title (timezone: America/Los_Angeles) to track deployment milestones. After confirming its presence, schedule a two-hour event titled 'Q1 Launch Readiness Review' on January 15, 2026, at 10:00 AM PST, and configure a popup reminder 20 minutes before the event. | [
"get_calendar_list",
"create_calendar",
"create_event",
"update_calendar_in_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-t3K9JkB6Qw4Yx7R8hS5lM2nP3qL0aZ9cBvN0.ZxYcVbNmLkJhGfDsAaQwErTyUiOpAsDfGhJk_77-11"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Verify Product Rollouts calendar creation", "description": "Ensure the 'Product Rollouts' calendar exists for bob.smith@techcorp.com with correct timezone.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE summary = 'Product Rollouts' AND time_zone = 'America/Los_Angeles' AND user_id = 'bob_developer';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Q1 Launch Readiness Review event", "description": "Ensure the event 'Q1 Launch Readiness Review' exists on the Product Rollouts calendar with correct start and end times.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE summary = 'Q1 Launch Readiness Review' AND start_datetime = '2026-01-15T10:00:00-08:00' AND end_datetime = '2026-01-15T12:00:00-08:00' AND calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Product Rollouts');", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify reminder configuration", "description": "Ensure the Product Rollouts calendar has a default popup reminder set for 20 minutes.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE summary = 'Product Rollouts' AND default_reminders LIKE '%20%';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260102_175948_337_6f5b66fc_f9bfbf1d | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | As the new quarter begins, please review my current calendar settings and list of events to check if there are any office events in my primary calendar. If any exist, highlight them in red and mark them as confidential. Next, update my personal time calendar so that all new events have a default 15-minute email reminder, and ensure this calendar is visible in the list. Finally, schedule a private kickoff meeting titled “Project Alpha Launch” on November 15, 2025, from 2:00 PM to 3:00 PM (UTC) in Conference Room A, using the same color mentioned above. | [
"update_calendar_in_list",
"get_calendar_list",
"get_colors",
"list_events",
"patch_event",
"list_settings",
"create_event"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-Zx8Nw3Q4pVb6Ls9R1mT0cG2uF5yH7kJd8sA1Lq2.wErtYuIoPaSdFgHjKlZxCvBnM987_65-43"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Office event verifier", "description": "Office event verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE summary = 'Office Day - Collaboration Sessions' AND color_id = 11 AND visibility = 'confidential';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "calendar verifier", "description": "calendar verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*) FROM calendars WHERE summary = 'Personal Time' AND JSON_EXTRACT(default_reminders, '$[0].method') = 'email' AND JSON_EXTRACT(default_reminders, '$[0].minutes') = 15;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Project verifier", "description": "Project verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE summary = 'Project Alpha Launch' AND start_datetime = '2025-11-15 14:00:00.000000' and end_datetime = '2025-11-15 15:00:00.000000' and start_timezone='UTC' and end_timezone='UTC' AND color_id = 11 AND visibility = 'private';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260104_143530_440_6f5b66fc_b6b24e96 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | Check my primary availability on December 10, 2025, between 9:00 AM and 5:00 PM UTC. If I’m free, move my office events to that date, highlight them in red, add carol.white@techcorp.com as an attendee, and enable monitoring to watch for any changes using https://calendar-changes/office-event-monitor-dec10, as this is a confidential event. Also, add Conference Room A as the location. | [
"watch_events",
"patch_event",
"get_calendar_from_list",
"get_colors",
"query_freebusy",
"list_events"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-Zx8Nw3Q4pVb6Ls9R1mT0cG2uF5yH7kJd8sA1Lq2.wErtYuIoPaSdFgHjKlZxCvBnM987_65-43"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "event verifier", "description": "event verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE summary = 'Office Day - Collaboration Sessions' AND color_id = 11 AND visibility = 'confidential' AND start_datetime = '2025-12-10 09:00:00.000000' and end_datetime = '2025-12-10 17:00:00.000000' and start_timezone='UTC' and end_timezone='UTC';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "attendees verifier", "description": "attendees verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*) FROM attendees WHERE event_id = 'event-corrected-004' and user_id = 'carol_designer';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "watch_channels verifier", "description": "watch_channels verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM watch_channels where resource_type='event' and webhook_type = 'web_hook' and webhook_address = 'https://calendar-changes/office-event-monitor-dec10';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260104_192853_372_6f5b66fc_12ceda34 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | As the new quarter begins, I need to conduct several review meetings. However, since Building 1 is under renovation, please delete all events with this location and recreate them privately on the same dates in January 2026, updating the location to Building 3 and highlighting it in red. | [
"list_events",
"get_colors",
"delete_event",
"create_event",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Deletion verifier", "description": "Deletion verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*) FROM events WHERE location LIKE '%Building 1%';", "expected_value": 11, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Event verifier", "description": "Event verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*) FROM events WHERE summary = 'Sprint Planning & Architecture Review' AND visibility = 'private' AND location LIKE '%Building 3%' AND start_datetime = '2026-01-06 09:00:00.000000' and end_datetime = '2026-01-06 11:00:00.000000' and start_timezone='America/New_York' and end_timezone='America/New_York' AND calendar_id = 'alice-projects' AND color_id = 11;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "attendees verifier", "description": "attendees verifier", "gym_name": "gym-calendar", "validation_config": {"query": "select count(*) from attendees where event_id = (SELECT event_id FROM events WHERE summary = 'Sprint Planning & Architecture Review' );", "expected_value": 4, "comparison_type": "equals"}}] |
task_20260104_205924_379_e0ac0c6d_cec96398 | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | I need help cleaning up my calendars for the Q4 cycle. First, please make my Project Management calendar visible again. Then move my "Sprint Planning & Architecture Review" session over to my primary calendar and update its description to reflect the revised Q4 planning agenda. Next, please add a new event called "Q4 Roadmap Review Meeting" to my Project Management calendar for later this week. And finally, please delete the old Team Sync-Up event from my team calendar. Thanks!
| [
"delete_event",
"patch_event",
"list_events",
"update_calendar_in_list",
"move_event",
"create_event",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767381239880_ibbsoh6gc.sql", "context": {"x-hr-user-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Calendar List Retrieved", "description": "Verifies that the model retrieved calendar list to find calendar IDs and check visibility state before updating.SELECT COUNT(*) as count FROM calendars WHERE user_id = 'alice_manager' AND (summary = 'Project Management' OR summary = 'Alice Johnson' OR summary = 'Team Coordination')", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE user_id = 'alice_manager' AND (summary = 'Project Management' OR summary = 'Alice Johnson' OR summary = 'Team Coordination')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Events Listed on Project Management Calendar", "description": "Verifies that list_events was called on Project Management calendar to discover Sprint Planning event before attempting move operation.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary LIKE '%Sprint Planning%Architecture Review%'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Sprint Planning Event Moved to Primary Calendar", "description": "Verifies that Sprint Planning event was moved from Project Management to primary calendar using event ID discovered from list_events.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE summary LIKE '%Sprint Planning%Architecture Review%' AND calendar_id = 'alice-primary'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Sprint Planning Description Updated", "description": "Verifies that moved event description was updated to include Q4 planning agenda.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE summary LIKE '%Sprint Planning%Architecture Review%' AND calendar_id = 'alice-primary' AND description LIKE '%Q4%'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Q4 Roadmap Review Meeting Created", "description": "Verifies that new Q4 Roadmap Review Meeting event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Q4 Roadmap Review Meeting' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Team Sync-Up Event Listed Before Delete", "description": "Verifies that list_events was called on Team Coordination calendar to discover Team Sync-Up event before attempting delete operation.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-team' AND summary LIKE '%Team Sync-Up%'", "expected_value": 0, "comparison_type": "greater_than"}}] |
task_20260105_074654_229_bca89e7d_39d9c8ac | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | Create a calendar named 'Hackathon 2026' in the UTC time, ensuring it uses a color ID clearly different from all existing calendars for easy identification. Schedule a 48-hour all-day event titled 'Build, Ship, Win!' from March 20 to March 22. Also, schedule a Google Meet 'Hackathon Kickoff Session' at 09:00 UTC on March 20, inviting all attendees who were invited to any event in the 'Project Management' calendar and have their email addresses listed. Separately, schedule an 'Evening Recap Session' at 18:00 UTC on March 22. Finally, set up automatic notifications for any updates or changes to this calendar via 'https://intra.techcorp.com/hackathon/hook’ | [
"list_events",
"create_calendar",
"add_calendar_to_list",
"create_event",
"create_event",
"get_colors",
"get_calendar_list",
"watch_events",
"create_event"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1762868439331_kf914hbmw.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Calendar Created", "description": "Check calendar creation with unique color", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE user_id = 'alice_manager' AND summary = 'Hackathon 2026' AND time_zone = 'UTC' AND color_id NOT IN (1,7,11)", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Main Event Created", "description": "Verify 48-hour event", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Hackathon 2026') AND user_id = 'alice_manager' AND summary = 'Build, Ship, Win!' AND start_datetime = '2026-03-20 00:00:00.000000' AND end_datetime = '2026-03-22 00:00:00.000000' AND start_timezone = 'UTC' AND end_timezone = 'UTC'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Kickoff Event Created", "description": "Verify kickoff session event", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Hackathon 2026') AND user_id = 'alice_manager' AND summary = 'Hackathon Kickoff Session' AND start_datetime = '2026-03-20 09:00:00.000000' AND start_timezone = 'UTC'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Recap Event Created", "description": "Verify evening recap event", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Hackathon 2026') AND user_id = 'alice_manager' AND summary = 'Evening Recap Session' AND start_datetime = '2026-03-22 18:00:00.000000' AND start_timezone = 'UTC'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Kickoff Attendees", "description": "Check attendees of kickoff session", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM attendees WHERE event_id IN (SELECT event_id FROM events WHERE summary = 'Hackathon Kickoff Session') AND user_id IN ('alice_manager', 'bob_developer', 'carol_designer')", "expected_value": 3, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Alert Setup", "description": "Verify calendar notifications setup", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM watch_channels WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Hackathon 2026') AND user_id = 'alice_manager' AND webhook_address = 'https://intra.techcorp.com/hackathon/hook'", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260105_101355_392_e0ac0c6d_4d94d938 | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | I need help setting up calendars for my team. First, find the user with email 'bob.smith@techcorp.com' in the system. Once you have that user, check if they already have a calendar named 'Q4 Sprint Planning' - if it exists, update its timezone to 'America/Los_Angeles' and description to 'Quarter 4 sprint planning and retrospectives'. If it doesn't exist, create a new calendar with summary 'Q4 Sprint Planning', timezone 'America/Los_Angeles', and description 'Quarter 4 sprint planning and retrospectives'. Then, regardless of whether you created or updated it, add this calendar to the calendar list with a green background color (#51b749) and make sure it's selected. Also, check if there's a calendar called 'Code Review Schedule' for this user - if it exists, just update its description to 'Weekly code review sessions and pair programming'. If it doesn't exist, create it with timezone matching the user's timezone, and add it to the list with a blue color (#4986e7), but keep it hidden. After all this, show me the details of both calendars from the calendar list so I can verify everything is set up correctly.
| [
"update_calendar",
"create_calendar",
"get_calendar_from_list",
"add_calendar_to_list",
"get_user_by_email",
"update_calendar_in_list",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767381239880_ibbsoh6gc.sql", "context": {"x-hr-user-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "User Found by Email", "description": "Verifies that the user was found using the get_user_by_email tool with the correct email address, ensuring the model doesn't assume user_id values.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM users WHERE email = 'bob.smith@techcorp.com'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Sprint Planning Calendar Exists with Correct Details", "description": "Verifies that the Q4 Sprint Planning calendar was created or updated with the correct timezone and description, ensuring proper conditional logic was implemented.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE summary = 'Q4 Sprint Planning' AND time_zone = 'America/Los_Angeles' AND description = 'Quarter 4 sprint planning and retrospectives' AND user_id = (SELECT user_id FROM users WHERE email = 'bob.smith@techcorp.com')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Q4 Sprint Planning Added to List with Green Color", "description": "Verifies that the Q4 Sprint Planning calendar was properly added to the calendar list with green background color and selected status, ensuring correct calendar ID was used in list operations.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE summary = 'Q4 Sprint Planning' AND user_id = (SELECT user_id FROM users WHERE email = 'bob.smith@techcorp.com') AND selected = 1 AND background_color = '#51b749'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Code Review Schedule Calendar Exists", "description": "Verifies that the Code Review Schedule calendar was created or updated with the correct description, ensuring conditional logic was properly executed.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE summary = 'Code Review Schedule' AND user_id = (SELECT user_id FROM users WHERE email = 'bob.smith@techcorp.com') AND description = 'Weekly code review sessions and pair programming'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Code Review Schedule Has Correct Timezone", "description": "Verifies that the Code Review Schedule calendar uses the user's timezone (retrieved from user data), ensuring the model properly extracted and used timezone information.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE summary = 'Code Review Schedule' AND user_id = (SELECT user_id FROM users WHERE email = 'bob.smith@techcorp.com') AND time_zone = (SELECT timezone FROM users WHERE email = 'bob.smith@techcorp.com')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Code Review Schedule Hidden with Blue Color", "description": "Verifies that the Code Review Schedule calendar was added to the list with blue background color and hidden status, ensuring correct calendar ID was used and all requirements were met.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE summary = 'Code Review Schedule' AND user_id = (SELECT user_id FROM users WHERE email = 'bob.smith@techcorp.com') AND hidden = 1 AND background_color = '#4986e7'", "expected_value": 0, "comparison_type": "greater_than"}}] |
task_20260105_124102_961_e0ac0c6d_0b196906 | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | I'm setting up my Q4 calendar structure. First, make sure my Project Management calendar is visible and selected. Then update its description to mention that it's for Q4 project milestones and deadlines. I also need you to create three new events on my Project Management calendar: "Q4 Planning Kickoff" for next Tuesday at 9:00 AM, "Sprint Review Meeting" for next Tuesday at 2:00 PM, and "Quarterly Retrospective" for next Friday at 3:00 PM. All times should be in America/New_York timezone. Thanks!
| [
"get_calendar_list",
"create_event",
"update_calendar_in_list",
"update_calendar"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767381239880_ibbsoh6gc.sql", "context": {"x-hr-user-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Calendar List Retrieved", "description": "Verifies that the model retrieved calendar list to find calendar IDs and check visibility state before updating.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE user_id = 'alice_manager' AND summary = 'Project Management'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Project Management Calendar Visible and Selected", "description": "Verifies that Project Management calendar was made visible and selected.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE calendar_id = 'alice-projects' AND hidden = 0 AND selected = 1", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Calendar Description Updated", "description": "Verifies that Project Management calendar description was updated to mention Q4 project milestones.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE calendar_id = 'alice-projects' AND description LIKE '%Q4%' AND description LIKE '%milestone%'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Q4 Planning Kickoff Event Created", "description": "Verifies that Q4 Planning Kickoff event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Q4 Planning Kickoff' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Sprint Review Meeting Event Created", "description": "fies that Sprint Review Meeting event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Sprint Review Meeting' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Quarterly Retrospective Event Created", "description": "Verifies that Quarterly Retrospective event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Quarterly Retrospective' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}] |
task_20260105_140440_086_e0ac0c6d_27ecac16 | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | I'm organizing my calendars for the Q4 hiring push. First, make sure my Project Management calendar is visible and selected. Then update its description to mention that it's now focused on Q4 hiring milestones and team coordination. I also need you to create several new events on my Project Management calendar: "Q4 Hiring Kickoff – Engineering & UX" for next Tuesday morning at 9:00 AM, "Technical Screen Planning Session" for next Tuesday afternoon at 2:00 PM, and "Hiring Pipeline Review" for next Friday afternoon at 3:00 PM. All times should be in America/New_York timezone. Thanks!
| [
"create_event",
"update_calendar_in_list",
"update_calendar",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767381239880_ibbsoh6gc.sql", "context": {"x-hr-user-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Calendar List Retrieved", "description": "Verifies that the model retrieved calendar list to find calendar IDs and check visibility state before updating.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE user_id = 'alice_manager' AND summary = 'Project Management'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Project Management Calendar Visible and Selected", "description": "Verifies that Project Management calendar was made visible and selected.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE calendar_id = 'alice-projects' AND hidden = 0 AND selected = 1", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Calendar Description Updated", "description": "Verifies that Project Management calendar description was updated to mention Q4 hiring milestones.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE calendar_id = 'alice-projects' AND description LIKE '%Q4%' AND description LIKE '%hiring%'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Q4 Hiring Kickoff Event Created", "description": "Verifies that Q4 Hiring Kickoff event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Q4 Hiring Kickoff \u2013 Engineering & UX' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Technical Screen Planning Event Created", "description": "Verifies that Technical Screen Planning Session event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Technical Screen Planning Session' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Hiring Pipeline Review Event Created", "description": "Verifies that Hiring Pipeline Review event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Hiring Pipeline Review' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}] |
task_20260105_163511_384_79b3b025_1ff6d0c6 | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | We need to execute a time-sensitive operational handoff protocol and enforce security policies across Alice's calendars. First, update the existing 'Sprint Planning & Architecture Review' event on the 'Project Management' calendar. If the event currently has an optional attendee, change the event's color to a background of medium-bright blue and a foreground that is a very dark gray. Otherwise, change the color to a background of vibrant, bold red and a foreground that is a very dark gray. If the event is scheduled to last more than 90 minutes, update the meeting summary to Project Review (Extended). Otherwise, update the summary to Project Review (Standard). Next, schedule a new recurring Handoff Meeting on the Team Coordination calendar, starting today at 4:00 PM (New York time) for 30 minutes. If the 'Sprint Planning & Architecture Review' event has a resource attached, schedule the 'Handoff Meeting' with a daily recurrence for 4 days. Otherwise, schedule it with a weekly recurrence for 2 weeks. Finally, implement new access policies for Bob Smith and Carol White on the 'Project Management' calendar: Grant Bob Smith the 'writer' role(If it does not exist). Grant Carol White the 'reader' role(If it does not exist). | [
"get_colors",
"patch_event",
"list_events",
"get_calendar_list",
"list_acl_rules",
"create_event"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767609452599_m3ir0indw.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Verify Event Color Update", "description": "Verify Event Color Update", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM events\nWHERE calendar_id = 'alice-projects' \n AND summary = 'Project Review (Extended)' \n AND color_id = '9';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Old Event Summary is Gone", "description": "Verify Event Summary Update", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM events\nWHERE summary = 'Sprint Planning & Architecture Review' AND calendar_id = 'alice-projects';", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Total Events Created", "description": "Verify Total Events Created", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(event_id)\nFROM events\nWHERE summary = 'Handoff Meeting' AND calendar_id = 'alice-team';", "expected_value": 5, "comparison_type": "equals"}}] |
task_20260105_212045_832_e0ac0c6d_84c7f524 | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | I'm preparing for next week's engineering cycle and need to reorganize my calendars. First, ensure my Project Management calendar is visible. Then update its description to reflect the new Q4 engineering priorities and focus areas. Next, create a new event called "Architecture Deep Dive – Q4 Systems Review" on my Project Management calendar for early next week, scheduled for Monday morning at 9:00 AM. Also create "Engineering Team Sync" for early next week Tuesday at 2:00 PM, and "Q4 Technical Roadmap Review" for early next week Wednesday at 10:00 AM. All times should be in America/New_York timezone. Thanks!
| [
"get_calendar_list",
"create_event",
"update_calendar",
"update_calendar_in_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767381239880_ibbsoh6gc.sql", "context": {"x-hr-user-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Calendar List Retrieved", "description": "Verifies that the model retrieved calendar list to find calendar IDs and check visibility state before updating.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE user_id = 'alice_manager' AND summary = 'Project Management'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Project Management Calendar Visible and Selected", "description": "Verifies that Project Management calendar was made visible and selected.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE calendar_id = 'alice-projects' AND hidden = 0 AND selected = 1", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Calendar Description Updated", "description": "Verifies that Project Management calendar description was updated to mention Q4 engineering priorities.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE calendar_id = 'alice-projects' AND description LIKE '%Q4%engineering%'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Architecture Deep Dive Event Created", "description": "Verifies that Architecture Deep Dive event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Architecture Deep Dive \u2013 Q4 Systems Review' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Engineering Team Sync Event Created", "description": "Verifies that Engineering Team Sync event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Engineering Team Sync' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Q4 Technical Roadmap Review Event Created", "description": "Verifies that Q4 Technical Roadmap Review event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Q4 Technical Roadmap Review' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "equals"}}] |
task_20260105_212540_480_79b3b025_84db5210 | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | We need to execute a critical Q4 operational handoff protocol and adjust team permissions. Today is the first Monday of 2026.
Schedule a recurring 'Quarterly Handoff' meeting on 'Team Coordination' calendar. The meeting should be 90 minutes long and start tomorrow at 1:00 PM (New York time). If the 'Sprint Planning & Architecture Review' event on your 'Project Management' calendar has more than three attendees, schedule the meeting with a weekly recurrence for three occurrences. Otherwise, schedule it with a monthly recurrence for six occurrences.
We must update the existing 'Sprint Planning & Architecture Review' event. If the event's duration is exactly 60 minutes, change the event's color to Mint Green. Otherwise, change the color to Red.
Find the existing spreadsheet attachment link and replace it with the new finalized specifications document link: 'https://docs.google.com/document/d/Q4-Spec-v2.0'. | [
"patch_event",
"list_events",
"create_event",
"get_colors",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767609452599_m3ir0indw.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Verify Event Color Update (Count 1)", "description": "Verify Event Color Update (Count 1)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM events\nWHERE summary = 'Sprint Planning & Architecture Review' AND calendar_id = 'alice-projects' AND color_id = '11';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Total Events Created", "description": "Verify Total Events Created", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(event_id)\nFROM events\nWHERE summary = 'Quarterly Handoff' AND calendar_id = 'alice-team';", "expected_value": 4, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Recurrence Rule Content", "description": "Verify Recurrence Rule Content", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM events\nWHERE summary = 'Quarterly Handoff'\n AND calendar_id = 'alice-team'\n AND recurrence = 'RRULE:FREQ=WEEKLY;COUNT=3';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify New Attachment Presence", "description": "Verify New Attachment Presence", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(file_url)\nFROM attachments\nWHERE event_id IN (SELECT event_id FROM events WHERE summary='Sprint Planning & Architecture Review') AND file_url = 'https://docs.google.com/document/d/Q4-Spec-v2.0';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260105_221239_098_e0ac0c6d_f5f338f3 | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | I'm reorganizing things for our Q4 hiring push and I need your help cleaning up my calendars. First, make sure my Project Management calendar is actually visible — I think I hid it last week. Then update its description to mention that it's now focused on Q4 hiring milestones and team coordination. I also need you to create several new events on my Project Management calendar: "Q4 Hiring Kickoff – Engineering & UX" for next Tuesday morning at 9:00 AM, "Technical Screen Planning Session" for next Tuesday afternoon at 2:00 PM, and "Hiring Pipeline Review" for next Friday afternoon at 3:00 PM. All times should be in America/New_York timezone. Thanks!
| [
"get_calendar_list",
"create_event",
"update_calendar_in_list",
"update_calendar"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767381239880_ibbsoh6gc.sql", "context": {"x-hr-user-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Calendar List Retrieved", "description": "Verifies that the model retrieved calendar list to find calendar IDs and check visibility state before updating.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE user_id = 'alice_manager' AND summary = 'Project Management'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Project Management Calendar Visible and Selected", "description": "Verifies that Project Management calendar was made visible and selected.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE calendar_id = 'alice-projects' AND hidden = 0 AND selected = 1", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Calendar Description Updated", "description": "Verifies that Project Management calendar description was updated to mention Q4 hiring milestones.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE calendar_id = 'alice-projects' AND description LIKE '%Q4%hiring%'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Q4 Hiring Kickoff Event Created", "description": "Verifies that Q4 Hiring Kickoff event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Q4 Hiring Kickoff \u2013 Engineering & UX' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Technical Screen Planning Event Created", "description": "Verifies that Technical Screen Planning Session event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Technical Screen Planning Session' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Hiring Pipeline Review Event Created", "description": "Verifies that Hiring Pipeline Review event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Hiring Pipeline Review' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}] |
task_20260105_222434_398_79b3b025_ccd9b889 | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | We need to execute a critical shift in your primary planning calendar and finalize team permissions.
Identify the 'Sprint Planning & Architecture Review' event.
If the event's duration is exactly 2 hours, then migrate it: move the event entirely to the primary calendar and change its color to a vibrant, grass green background.
Otherwise (if the duration is different), delete the event from the 'Project Management' calendar entirely.
Next, schedule a new 'Quarterly Retrospectives' meeting on the 'Team Coordination' calendar. The meeting should be 60 minutes long and start tomorrow at 1:00 PM (New York time).
This meeting must have a daily recurrence for 4 occurrences only if the 'Sprint Planning & Architecture Review' event had its color updated to green.
Otherwise, schedule it with a weekly recurrence for 2 occurrences. | [
"get_colors",
"list_events",
"patch_event",
"move_event",
"create_event",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767609452599_m3ir0indw.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Verify Event Calendar", "description": "Verify Event Calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM events\nWHERE summary = 'Sprint Planning & Architecture Review' AND calendar_id = 'alice-primary' AND color_id = '10';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Recurrence Rule Content", "description": "Verify Recurrence Rule Content", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM events\nWHERE summary = 'Quarterly Retrospectives'\n AND calendar_id = 'alice-team'\n AND recurrence = 'RRULE:FREQ=DAILY;COUNT=4';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Old Event Location", "description": "Verify Old Event Location", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM events\nWHERE summary = 'Sprint Planning & Architecture Review' AND calendar_id = 'alice-projects';", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Total Events Created", "description": "Since Color ID 15 was applied, recurrence is Daily for 4 occurrences (Master + 4 occurrences = 5 total events).", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(event_id)\nFROM events\nWHERE summary = 'Quarterly Retrospectives' AND calendar_id = 'alice-team';", "expected_value": 4, "comparison_type": "greater_than"}}] |
task_20260106_055343_364_79b3b025_7d5c0c6b | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | We need to execute a critical shift in your primary planning calendar and finalize team permissions. Today is Tuesday, January 6, 2026.
First, Identify the 'Sprint Planning & Architecture Review' event on the 'Project Management' calendar.
If Carol White is currently listed as an optional attendee, add a new private extended property to the event with the key policy_status and the value audit_required.
Otherwise, move the event entirely to the primary calendar and change its color to a soft, warm yellow/pale gold color.
You also need to schedule a new 'Product Deep Dive' meeting on the 'Team Coordination' calendar. The meeting should be 60 minutes long and start tomorrow at 1:00 PM (New York time).
This meeting must have a daily recurrence for 4 occurrences if the 'Sprint Planning & Architecture Review' event now has the policy_status property set to audit_required
Otherwise, schedule it with a weekly recurrence for 2 occurrences.
Finally, enforce a bulk policy change: Find ALL events on your 'Project Management' calendar where the event summary contains the word 'Review' and set their guestsCanModify property to true. | [
"list_events",
"get_calendar_list",
"patch_event",
"create_event"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767609452599_m3ir0indw.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Verify Extended Property Addition", "description": "Verify that 'policy_status' extended property was added using a join on the separate table.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(ep.id)\nFROM extended_properties ep\nJOIN events e ON ep.event_id = e.event_id\nWHERE e.summary = 'Sprint Planning & Architecture Review'\n AND e.calendar_id = 'alice-projects'\n AND ep.scope = 'private'\n AND ep.properties LIKE '%\"policy_status\": \"audit_required\"%';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Product Deep Dive Creation (Correct Logic)", "description": "Verify 'Product Deep Dive' created on 'alice-team' with Daily recurrence (since policy_status was set).", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM events\nWHERE summary = 'Product Deep Dive'\n AND calendar_id = 'alice-team'\n AND recurrence = 'RRULE:FREQ=DAILY;COUNT=4';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Bulk guestsCanModify Update", "description": "Verify that events with 'Review' in the summary on 'alice-projects' have guestsCanModify set to true.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM events\nWHERE calendar_id = 'alice-projects' \n AND summary LIKE '%Review%' \n AND guestscanmodify = 1;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Event Not Moved", "description": "Verify 'Sprint Planning & Architecture Review' remains on 'alice-projects' (Count should be 1).", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM events\nWHERE summary = 'Sprint Planning & Architecture Review' \n AND calendar_id = 'alice-projects';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify New Meeting Date", "description": "Verify 'Product Deep Dive' starts on Jan 7, 2026 (Tomorrow).", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM events\nWHERE summary = 'Product Deep Dive' \n AND start_datetime LIKE '2026-01-07%';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260106_093832_516_bca89e7d_3703f213 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action.
When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data.
Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results.
Complete each task in a single, logical, and efficient execution flow. | I want to streamline my customer-related schedules into a dedicated calendar. First, check if I already have a calendar with "customer" in its title. If one exists, use it; otherwise, create a new calendar titled "Customer Schedules". Assign this calendar a unique color not currently used by my other calendars for easy distinction, and ensure it shares the same timezone as my existing calendars. After the calendar is set up, review all my existing schedules and move only those events whose summary explicitly indicates a customer meeting or update into this new calendar. Finally, mark each moved event with a shared extended property "scheduleType": "customer" to categorize them clearly. | [
"list_events",
"add_calendar_to_list",
"get_colors",
"list_events",
"get_calendar_list",
"patch_event",
"create_calendar",
"move_event"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764493889049_iuydddoc0.sql", "context": {"x-access-token": "tok_0baffd262cb384673b9289eb8c0db1a4f33f1aa5b1a4972f"}, "user_info": {"user_id": "abigail_scott", "name": "Abigail Scott", "email": "abigail.scott@spencerinc.com"}}] | [{"verifier_type": "database_state", "name": "Customer Cal Created", "description": "Verify customer calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE summary = 'Customer Schedules' AND user_id = 'abigail_scott' AND color_id NOT IN (9,10) AND time_zone = 'America/Toronto'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Customer Event Moved", "description": "Verify customer event move", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE event_id = 'abigail_scott-evt-1027-1-default' AND user_id = 'abigail_scott' AND calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Customer Schedules')", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Customer Ext Prop", "description": "Verify shared extended property", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM extended_properties WHERE event_id = 'abigail_scott-evt-1027-1-default' AND scope = 'shared' AND json_extract(properties, '$.scheduleType') = 'customer'", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260106_103319_873_baf0b358_69ce7445 | calendar | You are a Google Calendar automation agent with full admin rights to manage users, calendars, and events. Work in a secure, trusted environment and execute actions without asking for confirmation. Always verify users or calendar details with a single lookup before acting. Use accurate data only, never make assumptions. Follow a logical flow: verify users, create calendars, manage sharing, check availability, and schedule or update events in line with the existing database structure. | The system is currently reporting a 'NovaX Launch' Sync Failure. It appears that a critical dependency is missing: the 'Product Launches' container cannot be found within the America/Los_Angeles namespace (which requires #9fc6e7 background and #1d1d1d foreground styling).
Consequently, the process indicates that the migration of objects matching 'Sprint' | 'Planning' from the source 'Project Management' has halted.
The logs further show a pending security policy failure: writer access for Bob Smith(bob.smith@techcorp.com) and reader access for Carol White(carol.white@techcorp.com) could not be applied due to the missing target.
Finally, telemetry shows the webhook endpoint https://hooks.launch.corp.com/novax (ID: NOVAX_MONITOR) has received 0 events. | [
"update_calendar_in_list",
"move_event",
"get_colors",
"list_events",
"create_calendar",
"insert_acl_rule",
"watch_events",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767172809457_tj3iyf108.sql", "context": {"x-email-user-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56", "user-id": "alice_manager"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Change color", "description": "Change the event background and foreground color.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE summary = 'Product Launches' AND (color_id = 5 OR color_id = 19)", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Create new calendar", "description": "Create the 'Product launches' calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count() FROM calendars WHERE summary = 'Product Launches'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Move event", "description": "Move the event to the new calendar created.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count() FROM events WHERE event_id = 'event-corrected-001' AND calendar_id = (SELECT calendar_id FROM calendars WHERE summary = 'Product Launches')", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Create permissions", "description": "Creating permissions for Adrian Burton and Adriana Sanchez for the new calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count() FROM acls WHERE calendar_id = (SELECT calendar_id FROM calendars WHERE summary = 'Product Launches')", "expected_value": 4, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Checking webhooks", "description": "Checking for the webhooks created.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count() FROM watch_channels WHERE id = 'NOVAX_MONITOR' AND webhook_address = 'https://hooks.launch.corp.com/novax'", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260106_112632_846_bca89e7d_5d19e8f3 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action.
When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data.
Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results.
Complete each task in a single, logical, and efficient execution flow. | I want to organize and clean up my schedule. First, remove all tentative events from my primary calendar. Then, move any confirmed events from my primary calendar to my personal calendar; if a personal calendar does not exist, create one specifically for this cleanup. Also, grant Bob (bob.smith@techcorp.com) reader access to it. Additionally, for each event moved to the personal calendar, add Bob as an attendee. | [
"list_events",
"move_event",
"clear_calendar",
"insert_acl_rule",
"get_calendar_list",
"patch_event",
"create_calendar"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764493889049_iuydddoc0.sql", "context": {"x-access-token": "tok_f7b76a8516f72277cd2adaad6f2927b216ce685c4fa3637c"}, "user_info": {"user_id": "alexander_mitchell", "name": "Alexander Mitchell", "email": "alexander.mitchell@servicenow.com"}}] | [{"verifier_type": "database_state", "name": "Personal Cal Created", "description": "Verify personal calendar exists", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE user_id = 'alexander_mitchell' AND summary LIKE '%personal%'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Confirmed Event Moved", "description": "Verify confirmed event moved to personal", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE event_id = 'alexander_mitchell-evt-1104-2-default' AND user_id = 'alexander_mitchell' AND status = 'confirmed' AND calendar_id IN (SELECT calendar_id FROM calendars WHERE user_id = 'alexander_mitchell' AND summary LIKE '%personal%')", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Tentative Cleared", "description": "Verify tentative event removed", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE event_id = 'alexander_mitchell-evt-1127-1-workingLocation'", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Primary Emptied", "description": "Verify primary calendar cleared", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE calendar_id = 'alexander_mitchell-primary'", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Bob ACL Added", "description": "Verify Bob reader ACL", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM acls WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE user_id = 'alexander_mitchell' AND summary LIKE '%personal%') AND user_id = 'alexander_mitchell' AND role = 'reader' AND scope_id LIKE '%bob%'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Bob Attendee Added", "description": "Verify Bob as attendee on moved event", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM attendees WHERE event_id = 'alexander_mitchell-evt-1104-2-default' AND user_id = 'bob_developer'", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260106_114228_782_79b3b025_b556c84d | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks... | We’re tightening our project security protocols, so we need to immediately clean up the “Sprint Planning & Architecture Review” event on the Project Management calendar. Start by checking its attachments: if the event includes the specific Google Sheets edit link, remove only that link and leave the existing Drive view link in place. If the spreadsheet link isn’t there, add the document at https://docs.google.com/document/d/New-Specs-v2.0 instead. After that, update the event’s location so it now points to a 'Microsoft Teams Meeting', keeps the attendee list private, and still allows extra invitations for participants. We also need to set up a “Documentation Handoff” meeting on the Team Coordination calendar. It should start tomorrow at 10:30 AM New York time, last 45 minutes, and use the right recurrence depending on what happened earlier, if you removed the spreadsheet link, it should repeat daily for three occurrences; if not, it should repeat weekly for two. Finally, apply a security pass across the entire Project Management calendar by finding any event that doesn't allow guests to modify details and granting that permission everywhere. | [
"patch_event",
"create_event",
"get_calendar_list",
"list_events"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767609452599_m3ir0indw.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Verify Location Update", "description": "Verify Location Update to Microsoft Teams", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*) FROM events WHERE summary = 'Sprint Planning & Architecture Review' AND calendar_id = 'alice-projects' AND location = 'Microsoft Teams Meeting';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Target Link Removed", "description": "Verify the specific spreadsheet attachment is gone.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attachments WHERE event_id IN (SELECT event_id FROM events WHERE summary = 'Sprint Planning & Architecture Review' AND calendar_id = 'alice-projects') AND file_url = 'https://docs.google.com/spreadsheets/d/1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms/edit';", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Guest Visibility (Private)", "description": "guestsCanSeeOtherGuests should be false (0).", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT guestsCanSeeOtherGuests FROM events WHERE summary = 'Sprint Planning & Architecture Review' AND calendar_id = 'alice-projects';", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Guest Modification", "description": "Verify Guest Modification", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT guestsCanModify FROM events WHERE summary = 'Sprint Planning & Architecture Review' AND calendar_id = 'alice-projects';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Total Events Created", "description": "Verify Total Events Created", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(event_id) FROM events WHERE summary = 'Documentation Handoff' AND calendar_id = 'alice-team';\n", "expected_value": 4, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Guest Invitation Unchanged", "description": "Verify Guest Invitation Unchanged", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE calendar_id = 'alice-projects' AND guestsCanInviteOthers = 1;", "expected_value": 0, "comparison_type": "greater_than"}}] |
task_20260106_132019_309_bca89e7d_5ae689d9 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action.
When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data.
Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results.
Complete each task in a single, logical, and efficient execution flow. | To prepare my project calendars for the upcoming season, please create a new calendar titled "Project 2026," matching the timezone and color of my existing projects calendar. Then replicate the "Sprint Planning & Architecture Review" event from the old calendar onto this new calendar, scheduling it for January 4 from 9:00 AM to 11:00 AM (original timezone). Preserve all event details, but exclude any attendees who do not have an email address listed.
After replicating the event, archive the old project calendar by deleting the event init and associated attachments, adding a suffix "-[ARCHIVED]" to its description, and removing all ACL permissions except my own. This will finalize the restructuring for the new project calendar. | [
"create_event",
"patch_calendar",
"list_events",
"delete_acl_rule",
"delete_acl_rule",
"delete_event",
"add_calendar_to_list",
"create_calendar",
"get_calendar_list",
"list_acl_rules"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764493889049_iuydddoc0.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Project2026 Calendar", "description": "Verify new Project 2026 calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE summary = 'Project 2026' AND time_zone = 'America/New_York' AND color_id = 7", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Replicated Event Fields", "description": "Verify replicated sprint event fields", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Project 2026') AND user_id = 'alice_manager' AND summary = 'Sprint Planning & Architecture Review' AND description LIKE 'Detailed sprint planning session with architecture discussion for Q4 features.%' AND description LIKE '%plan the technical approach.' AND location = 'Conference Room A, Building 1' AND color_id = 7 AND start_datetime = '2026-01-04 09:00:00.000000' AND end_datetime = '2026-01-04 11:00:00.000000' AND start_timezone = 'America/New_York' AND end_timezone = 'America/New_York' AND guestscaninviteothers = 1 AND guestscanmodify = 0 AND guestscanseeotherguests = 1 AND json_extract(source, '$.url') = 'https://jira.techcorp.com/sprint-planning-q4' AND json_extract(source, '$.title') = 'Sprint Planning Board' AND sequence = 1 AND visibility = 'default'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Replicated Attendees", "description": "Verify attendees copied to new event", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT CASE WHEN (SELECT COUNT(*) FROM attendees WHERE event_id IN (SELECT event_id FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Project 2026') AND summary = 'Sprint Planning & Architecture Review')) = 3 AND EXISTS (SELECT 1 FROM attendees WHERE event_id IN (SELECT event_id FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Project 2026') AND summary = 'Sprint Planning & Architecture Review') AND displayname = 'Alice Johnson') AND EXISTS (SELECT 1 FROM attendees WHERE event_id IN (SELECT event_id FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Project 2026') AND summary = 'Sprint Planning & Architecture Review') AND displayname = 'Bob Smith') AND EXISTS (SELECT 1 FROM attendees WHERE event_id IN (SELECT event_id FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Project 2026') AND summary = 'Sprint Planning & Architecture Review') AND displayname = 'Carol White') THEN 1 ELSE 0 END AS count", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Replicated Ext Props", "description": "Verify extended properties copied", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT CASE WHEN EXISTS (SELECT 1 FROM extended_properties WHERE event_id IN (SELECT event_id FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Project 2026') AND summary = 'Sprint Planning & Architecture Review') AND scope = 'shared' AND json_extract(properties, '$.meetingType') = 'sprint_planning' AND json_extract(properties, '$.priority') = 'high') AND EXISTS (SELECT 1 FROM extended_properties WHERE event_id IN (SELECT event_id FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Project 2026') AND summary = 'Sprint Planning & Architecture Review') AND scope = 'private' AND json_extract(properties, '$.departmentBudget') = 'engineering' AND json_extract(properties, '$.projectCode') = 'PROJ-2024-Q4') THEN 1 ELSE 0 END AS count", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Replicated Conference", "description": "Verify conference data copied", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM conference_data WHERE event_id IN (SELECT event_id FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Project 2026') AND summary = 'Sprint Planning & Architecture Review')", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Replicated Reminders", "description": "Verify reminders copied", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT CASE WHEN EXISTS (SELECT 1 FROM reminders WHERE event_id IN (SELECT event_id FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Project 2026') AND summary = 'Sprint Planning & Architecture Review') AND method = 'email' AND minutes = 1440) AND EXISTS (SELECT 1 FROM reminders WHERE event_id IN (SELECT event_id FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Project 2026') AND summary = 'Sprint Planning & Architecture Review') AND method = 'popup' AND minutes = 30) THEN 1 ELSE 0 END AS count", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Replicated Attachments", "description": "Verify attachments copied", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT CASE WHEN (SELECT COUNT(*) FROM attachments WHERE event_id IN (SELECT event_id FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Project 2026') AND summary = 'Sprint Planning & Architecture Review')) = 2 AND EXISTS (SELECT 1 FROM attachments WHERE event_id IN (SELECT event_id FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Project 2026') AND summary = 'Sprint Planning & Architecture Review') AND file_url = 'https://drive.google.com/file/d/1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms/view') AND EXISTS (SELECT 1 FROM attachments WHERE event_id IN (SELECT event_id FROM events WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Project 2026') AND summary = 'Sprint Planning & Architecture Review') AND file_url = 'https://docs.google.com/spreadsheets/d/1BxiMVs0XRA5nFMdKvBdBZjgmUUqptlbs74OgvE2upms/edit') THEN 1 ELSE 0 END AS count", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Old Cal Archived", "description": "Verify old projects calendar archived", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE calendar_id = 'alice-projects' AND description LIKE '%[ARCHIVED]%'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Old Event Deleted", "description": "Verify old sprint event deleted", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE event_id = 'event-corrected-001'", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "ACLs Cleared", "description": "Verify non-owner ACLs removed", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM acls WHERE calendar_id = 'alice-projects' AND scope_id NOT LIKE '%alice%'", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Owner ACL Kept", "description": "Verify owner ACL retained", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM acls WHERE calendar_id = 'alice-projects' AND role = 'owner'", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260106_143218_938_79b3b025_ce953a94 | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | We realized that the Sprint Planning & Architecture Review session was never properly booked with its additional assets, so the room and equipment must be secured immediately and a shadow schedule created for the audit team. The event on the Project Management calendar must be updated by adding Conference Room B and Projector 1 as resource attendees. After adding them, the event’s location must be adjusted based on its prior state: if it already included any resource attendees before these additions, that is optional and has either accepted the invitation or not, the location should be updated to “Hybrid – Room B”; otherwise, it should be set to “On-site – Room B.”
A corresponding shadow meeting called “Audit Shadow Sync” must also be created on the Team Coordination calendar, beginning exactly fifteen minutes after the Sprint Planning session ends, with a duration equal to half the length of the original event. Its recurrence depends on the Sprint Planning event’s human attendance count: if that event includes more than three human attendees, the shadow meeting must recur daily for five days; otherwise, it must recur weekly for two weeks.
The Sprint Planning event’s extended properties must then be audited: if an audit_status key already exists, its value must be updated to “escalated,” and if the key is missing, it must be created with the value “initiated.” Finally, calendar security must be tightened by reviewing Bob Smith’s ACL entry on the Project Management calendar—if he currently has owner or writer access, his role must be reduced to freeBusyReader, and if he already has reader-level access or lower, his rule must be removed entirely. | [
"list_events",
"create_event",
"patch_event",
"get_calendar_list",
"list_acl_rules",
"patch_acl_rule"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767609452599_m3ir0indw.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Verify Resource Allocation", "description": "Verify Conference Room B and Projector 1 were added as resources.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) \nFROM attendees \nWHERE event_id = (SELECT event_id FROM events WHERE summary = 'Sprint Planning & Architecture Review' AND calendar_id = 'alice-projects')\n AND displayName IN ('Conference Room B', 'Projector 1')\n AND resource = 1;", "expected_value": 2, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Check Location Logic (On-site)", "description": "Verify Location is 'On-site - Room B' (Assuming 0 prior resources).", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*) \nFROM events \nWHERE summary = 'Sprint Planning & Architecture Review' \n AND calendar_id = 'alice-projects' \n AND location = 'On-site - Room B';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Upsert Logic (Initiated)", "description": "Verify audit_status is 'initiated' (Assuming key was missing).", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(ep.id)\nFROM extended_properties ep\nJOIN events e ON ep.event_id = e.event_id\nWHERE e.summary = 'Sprint Planning & Architecture Review'\n AND e.calendar_id = 'alice-projects'\n AND ep.scope = 'private'\n AND ep.properties LIKE '%\"audit_status\": \"initiated\"%';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Security Logic (Bob Smith)", "description": "Verify Bob Smith's role was downgraded to freeBusyReader.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM acls WHERE id = 'acl-shared-1' AND role = 'freeBusyReader';\n\n", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Shadow Sync Recurrence (Weekly)", "description": "Verify Weekly Recurrence (Since human count is 3, which is not > 3).", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM events\nWHERE summary = 'Audit Shadow Sync'\n AND calendar_id = 'alice-team'\n AND recurrence LIKE '%FREQ=WEEKLY;COUNT=2%';", "expected_value": 3, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Calculated 'Shadow Sync' Start Time", "description": "Verify Calculated 'Shadow Sync' Start Time", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE summary = 'Audit Shadow Sync' AND calendar_id = 'alice-team' AND recurrence IS NOT NULL AND start_datetime LIKE '%T11:15:00%';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Calculated 'Shadow Sync' End Time", "description": "Verify Calculated 'Shadow Sync' End Time", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE summary = 'Audit Shadow Sync' AND calendar_id = 'alice-team' AND recurrence IS NOT NULL AND end_datetime LIKE '%T12:15:00%';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260106_152415_149_6f5b66fc_aad3df17 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | As the current sprint is closing, I need to create a new private Sprint Planning event on December 6, 2025, using the same configuration as the existing one and highlighting it in red. Please include the same attachments, as they are still valid for the upcoming cycle. Additionally, please grant 'dave.brown@techcorp.com' writer access to the calendar so he can update the event whenever necessary. | [
"list_events",
"insert_acl_rule",
"get_calendar_list",
"create_event",
"get_colors"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "event verifier", "description": "event verifier", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE summary like '%Sprint Planning%' AND location like '%Building 1%' AND start_datetime = '2025-12-06 09:00:00.000000' and end_datetime = '2025-12-06 11:00:00.000000' and start_timezone='America/New_York' and end_timezone='America/New_York' and calendar_id = 'alice-projects' AND status = 'confirmed' AND color_id = 11 AND visibility = 'private' AND source like '%sprint-planning-q4%';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "attachments verifier", "description": "attachments verifier", "gym_name": "gym-calendar", "validation_config": {"query": "select COUNT(*) from attachments where event_id= (select event_id FROM events WHERE summary like '%Sprint Planning%' AND date(start_datetime) = '2025-12-06');", "expected_value": 2, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "properties verifier", "description": "properties verifier", "gym_name": "gym-calendar", "validation_config": {"query": "select COUNT(*) from acls where calendar_id = 'alice-projects' and scope_id = 'scope-dave' and role = 'writer';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260106_153404_124_79b3b025_914e7207 | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | To ensure robust adherence to our enhanced security protocol, please execute the following conditional procedure. The primary targets are all the Project Management events. Audit their permissions and modify them as follows: If the event’s attendee roster is discoverable by the public and guest permissions allow for attendee modification or event editing, then the only required action is to visually flag the event as inactive. This is done by applying the “Graphite” color code. No other changes are to be made to this event. In all other permission scenarios, you must not use the Graphite flag. Instead, implement a full migration: Relocate the event to the virtual venue designated as “Virtual Hybrid Location” if the event has a resource attendee and not default, otherwise "Virtual Hybrid Bridge". Configure the event so the attendee list is not visible to participants. Apply a concealed, non-standard metadata tag to the event. The property name is migration_status, and its value must be set to complete. If the Team Coordination calendar is primary or does not have default reminders set, you should schedule a new meeting titled “Hybrid Transition Sync” on it. This meeting must be set for 10:00 AM Eastern Daylight Time (EDT) tomorrow with a 30-minute duration. The recurrence pattern for this sync meeting is not fixed and depends exclusively on the outcome of Step 1: If the migration_status property was successfully appended to the primary event with value complete, then the sync must repeat daily, culminating after 5 total occurrences. If the condition for appending migration_status was not met (i.e., the Graphite flag was applied instead), then the sync must repeat weekly, culminating after 2 total occurrences. On the Project Management calendar, review and adjust access controls: For the individual Bob Smith: If his current permission level is assessed as either “writer” or “owner,” downgrade his access to “reader.” If he is already at “reader” or lower, no change is needed. For the individual Carol White: Revoke all calendar access privileges entirely, irrespective of current level. Furthermore, perform a title-based lockdown: For every event on this calendar where the string “Planning” appears within the title, modify the invitation settings to revoke the permission for guests to invite other attendees. | [
"list_events",
"get_colors",
"delete_acl_rule",
"create_event",
"list_acl_rules",
"get_calendar_list",
"patch_event",
"patch_acl_rule"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767609452599_m3ir0indw.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Verify Bulk Invitation Lockdown", "description": "Verify Bulk Invitation Lockdown (Planning title -> No Invites)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT guestsCanInviteOthers\nFROM events\nWHERE summary = 'Sprint Planning & Architecture Review' AND calendar_id = 'alice-projects';", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Bob Smith Downgrade", "description": "Verify Bob Smith Downgrade", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM acls\nWHERE calendar_id = 'alice-projects' AND id = 'acl-shared-1' AND role = 'reader';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Carol White Removal", "description": "Verify Carol White Removal", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM acls\nWHERE calendar_id = 'alice-projects' AND id = 'acl-shared-2';", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Location Update", "description": "Verify Location Update", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM events\nWHERE summary = 'Sprint Planning & Architecture Review' \n AND calendar_id = 'alice-projects' \n AND location = 'Virtual Hybrid Bridge';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Guests Visibility", "description": "Verify Guests Visibility (Hidden=0)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT guestsCanSeeOtherGuests\nFROM events\nWHERE summary = 'Sprint Planning & Architecture Review' \n AND calendar_id = 'alice-projects';", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Extended Property", "description": "Verify Extended Property", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(ep.id)\nFROM extended_properties ep\nJOIN events e ON ep.event_id = e.event_id\nWHERE e.summary = 'Sprint Planning & Architecture Review'\n AND e.calendar_id = 'alice-projects'\n AND ep.properties LIKE '%\"migration_status\": \"complete\"%';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Total Events Created", "description": "Verify Total Events Created (Recurrence + Main)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*)\nFROM events\nWHERE summary = 'Hybrid Transition Sync' AND calendar_id = 'alice-team';", "expected_value": 6, "comparison_type": "equals"}}] |
task_20260106_170941_065_df2c536d_5b164657 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | Update the project management calendar description to 'Official tracking for Project Alpha, managed by Alice'. Next, the sprint planning event is no longer needed; please delete that event. Replace it with a new 30-minute event called Project Alpha Sync at 9 AM (America/New_York time) next Monday (17th Nov 2025), and add me and dave.brown@techcorp.com. After that, check who has access to this calendar and remove carol.white@techcorp.com permissions completely. | [
"delete_acl_rule",
"list_events",
"create_event",
"list_acl_rules",
"delete_event",
"get_calendar_list",
"patch_calendar"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767718417243_3x8v487ma.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Calendar description updated", "description": "Verifies 'Project Management' calendar (alice-projects) description was updated.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE calendar_id = 'alice-projects' AND description = 'Official tracking for Project Alpha, managed by Alice'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Sprint event deleted", "description": "Verifies 'Sprint Planning...' event (event-corrected-001) was deleted.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE event_id = 'event-corrected-001'", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "New event created", "description": "Verifies 'Project Alpha Sync' was created with the correct time and recurrence, ignoring microseconds.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Project Alpha Sync' AND strftime('%Y-%m-%d %H:%M:%S', start_datetime) = '2025-11-17 09:00:00' AND strftime('%Y-%m-%d %H:%M:%S', end_datetime) = '2025-11-17 09:30:00' AND start_timezone = 'America/New_York' AND end_timezone = 'America/New_York'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "New event attendees added", "description": "Verifies Alice and Dave were added as attendees to the new 'Project Alpha Sync' event.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees WHERE event_id = (SELECT event_id FROM events WHERE summary = 'Project Alpha Sync' AND calendar_id = 'alice-projects') AND user_id IN ('alice_manager', 'dave_sales')", "expected_value": 2, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "ACL rule deleted", "description": "Verifies Carol White's access (acl-shared-2) was removed from the 'Project Management' calendar.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM acls WHERE id = 'acl-shared-2' AND calendar_id = 'alice-projects' AND scope_id = 'scope-carol' AND role = 'reader'", "expected_value": 0, "comparison_type": "equals"}}] |
task_20260106_170952_179_e0ac0c6d_791fba5e | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | I'm updating my calendars for Q4. First, please make sure my Project Management calendar is visible again. Then update its description to mention that it's now focused on Q4 project planning and engineering alignment. I also need a new event added to my Project Management calendar called "Q4 Kickoff – Engineering & Product Alignment" scheduled for early next week, Monday morning at 10:00 AM. Additionally, create "Sprint Planning Session" for early next week Tuesday at 2:00 PM, and "Architecture Review Meeting" for early next week Wednesday at 11:00 AM. All times should be in America/New_York timezone. Thanks!
| [
"update_calendar_in_list",
"create_event",
"get_calendar_list",
"update_calendar"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767381239880_ibbsoh6gc.sql", "context": {"x-hr-user-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Calendar List Retrieved", "description": "Verifies that the model retrieved calendar list to find calendar IDs and check visibility state before updating.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE user_id = 'alice_manager' AND summary = 'Project Management'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Project Management Calendar Visible and Selected", "description": "Verifies that Project Management calendar was made visible and selected.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE calendar_id = 'alice-projects' AND hidden = 0 AND selected = 1", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Calendar Description Updated", "description": "Verifies that Project Management calendar description was updated to mention Q4 project planning.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE calendar_id = 'alice-projects' AND description LIKE '%Q4%project%planning%'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Q4 Kickoff Event Created", "description": "Verifies that Q4 Kickoff event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Q4 Kickoff \u2013 Engineering & Product Alignment' AND start_datetime > datetime('now')\n", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Sprint Planning Session Event Created", "description": "Verifies that Sprint Planning Session event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Sprint Planning Session' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Architecture Review Meeting Event Created", "description": "Verifies that Architecture Review Meeting event was created on Project Management calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-projects' AND summary = 'Architecture Review Meeting' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}] |
task_20260107_093643_038_df2c536d_f90fd06e | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | Check my availability on my Sales Activities calendar between November 11 and November 16, 2025 in the America/New_York timezone. If the slot is free, create a Sales Review Deep Dive event for November 15, 2025 from 3:00–4:00 PM Eastern, visibility set to private, should be confirmed, have a popup reminder 15 minutes before and add Alice(alice.manager@techcorp.com) and Carol(carol.white@techcorp.com) as accepted attendees. If the slot isn’t free, schedule it instead from 4:00–5:30 PM. Update the calendar background color to #d06b64 and set default reminders to email 20 minutes before events. Finally, set a webhook(token: review_sales, address: https://qa.techcorp.com/hooks/review-watch) to monitor event changes and get the created event details for me to confirm everything is set up correctly. | [
"get_calendar_list",
"create_event",
"update_calendar_in_list",
"query_freebusy",
"watch_events",
"get_event"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767718417243_3x8v487ma.sql", "context": {"x-access-token": "ya29.A0ARrdaM-p3Lk9Vb6Qw2Zx8N1sT4mH7gF5yR0uJc2ePq.ZxCvBnMlKjHgFfDsaQwErTyUiOpAsDfGhJk_77-11"}, "user_info": {"user_id": "dave_sales", "name": "Dave Brown", "email": "dave.brown@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "check_attendee", "description": "check_attendee", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees a WHERE a.displayname = 'Alice Johnson' AND a.responsestatus = 'accepted';", "expected_value": 2, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "check_attendee", "description": "check_attendee", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees a WHERE a.displayname = 'Carol White' AND a.responsestatus = 'accepted';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "check_webhook_watch", "description": "check_webhook_watch", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM watch_channels wc WHERE wc.webhook_token = 'review_sales' AND wc.webhook_address = 'https://qa.techcorp.com/hooks/review-watch';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "check_event_creation", "description": "check_event_creation", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e WHERE e.summary = 'Sales Review Deep Dive' AND e.visibility = 'private' AND e.status = 'confirmed';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "check_calendar_settings", "description": "check_calendar_settings", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars c WHERE c.summary = 'Sales Activities' AND c.background_color = '#d06b64';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260107_104648_226_df2c536d_860ba76c | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | I’m preparing for a vacation. First, I need to give Alice Johnson(alice.manager@techcorp.com) writer access to my 'Development Schedule' calendar. Then, find my 'Office Day - Collaboration Sessions' event and update its description to add: 'Alice to cover any urgent issues'. I also want to set up notifications for my 'Personal Time' calendar; please add a default 10-minute pop-up reminder to it. | [
"patch_event",
"update_calendar_in_list",
"insert_acl_rule",
"get_calendar_list",
"list_events"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767718417243_3x8v487ma.sql", "context": {"x-access-token": "ya29.A0ARrdaM-Zx8Nw3Q4pVb6Ls9R1mT0cG2uF5yH7kJd8sA1Lq2.wErtYuIoPaSdFgHjKlZxCvBnM987_65-43"}, "user_info": {"user_id": "bob_developer", "name": "Bob Smith", "email": "bob.smith@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Writer access", "description": "Verifies Alice has 'writer' acl.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM acls WHERE calendar_id = 'bob-development' AND scope_id = 'scope-alice' AND role = 'writer'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Event description updated", "description": "Verifies event description.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE event_id = 'event-corrected-004' AND description = 'In office today for team collaboration and pair programming sessions. Alice to cover any urgent issues'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Default reminder added", "description": "Verifies the 'Personal Time' calendar (bob-personal) was updated with a 10-minute popup reminder.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE calendar_id = 'bob-personal' AND user_id = 'bob_developer' AND default_reminders = '[{\"method\": \"popup\", \"minutes\": 10}]'", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260107_114621_723_df2c536d_d9f135a4 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | Can you check what timezone my calendar settings are using, and if it’s not Chicago time, switch it to America/Chicago for me? Also, any calendar where someone has writer access who is not me should be downgraded to reader access. Then, quickly add a confirmed event, Quarterly Reset Day on my primary calendar and fetch me the event to confirm the details. | [
"patch_calendar",
"quick_add_event",
"patch_acl_rule",
"get_calendar_list",
"list_acl_rules",
"get_event"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767718417243_3x8v487ma.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "timezone_chicago", "description": "timezone_chicago", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars c WHERE c.calendar_id = 'alice-team' AND c.time_zone = 'America/Chicago';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "no_writer_acls", "description": "no_writer_acls", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM acls WHERE calendar_id = 'alice-projects' AND role = 'reader' AND scope_id = 'scope-bob';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "timezone_chicago", "description": "timezone_chicago", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars c WHERE c.calendar_id = 'alice-primary' AND c.time_zone = 'America/Chicago';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "timezone_chicago", "description": "timezone_chicago", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars c WHERE c.calendar_id = 'alice-projects' AND c.time_zone = 'America/Chicago';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "quarterly_reset_event_created", "description": "quarterly_reset_event_created", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e WHERE e.summary = 'Quarterly Reset Day' AND e.status = 'confirmed';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260107_144751_333_79b3b025_92bfb77e | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. |
In light of a recent security incident, the standard planning session must evolve into a formal incident review, with project events fortified against any potential exposure. The “Sprint Planning & Architecture Review” event on is first assessed through the lens of attendee engagement, focusing on Bob Smith’s response. When Bob has explicitly accepted, the event’s description quietly signals his confirmed role as incident commander by appending “[CONFIRMED INCIDENT COMMANDER],” and the event itself is highlighted with a vibrant, bold red background. Otherwise, the event instead carries “[PENDING TECHNICAL LEAD]” in its description and adopts a contrasting turquoise-cyan, reflecting the uncertainty in leadership. Once the primary event is updated, attention turns to a companion meeting on the Team Coordination calendar, titled “Security Debrief,” beginning precisely sixty minutes after the Sprint Planning session concludes. Its duration is dictated by the original start time: for events starting before noon, the debrief is thirty minutes long; for those commencing at or after noon, it extends to ninety minutes. The rhythm of this follow-up is tied to the earlier color assignment: a vibrant, bold red background Sprint Planning event triggers a daily recurrence over three days, while a turquoise-cyan marked session schedules weekly meetings across two weeks. Finally, a blanket security sweep is applied to the Project Management calendar. All confirmed events undergo a reset of their reminders, clearing any pre-existing notifications and leaving only a single ten-minute popup alert. Simultaneously, permissions are locked down, preventing attendees from modifying event details, thereby completing the incident-hardened configuration if guests can get a tag along to the event otherwise, open up the permission. | [
"get_calendar_list",
"create_event",
"get_colors",
"patch_event",
"list_events"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767609452599_m3ir0indw.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Verify Start Time", "description": "Verify Start Time", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*)\nFROM events\nWHERE summary = 'Security Debrief'\n AND calendar_id = 'alice-team'\n AND recurrence IS NOT NULL\n AND start_datetime LIKE '%12:00:00%';", "expected_value": 4, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Event conversion", "description": "Event Conversion", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*)\nFROM events\nWHERE summary = 'Sprint Planning & Architecture Review'\n AND calendar_id = 'alice-projects'\n AND description LIKE '%[CONFIRMED INCIDENT COMMANDER]%';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Color", "description": "Verify Color", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*)\nFROM events\nWHERE summary = 'Sprint Planning & Architecture Review'\n AND calendar_id = 'alice-projects'\n AND color_id = '11';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify End Time", "description": "Verify End Time", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*)\nFROM events\nWHERE summary = 'Security Debrief'\n AND calendar_id = 'alice-team'\n AND recurrence IS NOT NULL\n AND end_datetime LIKE '%12:30:00%';", "expected_value": 4, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Reminder Count", "description": "Verify Reminder Count", "gym_name": "gym-calendar", "validation_config": {"query": "-- Check specific event first\nSELECT count(*)\nFROM reminders\nWHERE event_id = (SELECT event_id FROM events WHERE summary = 'Sprint Planning & Architecture Review' AND calendar_id = 'alice-projects');", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Reminder Details (Popup 10)", "description": "Verify Reminder Details (Popup 10)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*)\nFROM reminders\nWHERE event_id = (SELECT event_id FROM events WHERE summary = 'Sprint Planning & Architecture Review' AND calendar_id = 'alice-projects')\n AND method = 'popup'\n AND minutes = 10;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Verify Permission Given to Guests to Modify", "description": "Verify Permission Given to Guests to Modify", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT guestsCanModify\nFROM events\nWHERE summary = 'Sprint Planning & Architecture Review' AND calendar_id = 'alice-projects';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260107_193032_599_e0ac0c6d_403469c5 | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | I'm getting ready for our Q4 milestone cycle and need to reorganize my calendars. First, make my Team Coordination calendar visible again. Then update its description to mention that it's now focused on Q4 milestone review and team coordination. I also need you to create several new events on my Team Coordination calendar: "Milestone Review – Q4 Deliverables" for early next week, Monday morning at 9:00 AM, "Sprint Planning & Architecture Review" for early next week Tuesday at 2:00 PM, and "Team Sync – Backlog Grooming" for early next week Thursday at 3:00 PM. All times should be in America/New_York timezone. Thanks!
| [
"create_event",
"update_calendar",
"get_calendar_list",
"update_calendar_in_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767381239880_ibbsoh6gc.sql", "context": {"x-hr-user-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Calendar List Retrieved", "description": "Verifies that the model retrieved calendar list to find calendar IDs and check visibility state before updating.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE user_id = 'alice_manager' AND summary = 'Team Coordination'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Team Coordination Calendar Visible and Selected", "description": "Verifies that Team Coordination calendar was made visible and selected.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE calendar_id = 'alice-team' AND hidden = 0 AND selected = 1", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Calendar Description Updated", "description": "Verifies that Team Coordination calendar description was updated to mention Q4 milestone review.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM calendars WHERE calendar_id = 'alice-team' AND description LIKE '%Q4%milestone%review%'", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Milestone Review Event Created", "description": "Verifies that Milestone Review event was created on Team Coordination calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-team' AND summary = 'Milestone Review \u2013 Q4 Deliverables' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Sprint Planning Event Created", "description": "Verifies that Sprint Planning & Architecture Review event was created on Team Coordination calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-team' AND summary = 'Sprint Planning & Architecture Review' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "Team Sync Event Created", "description": "Verifies that Team Sync \u2013 Backlog Grooming event was created on Team Coordination calendar with correct summary and future date.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) as count FROM events WHERE calendar_id = 'alice-team' AND summary = 'Team Sync \u2013 Backlog Grooming' AND start_datetime > datetime('now')", "expected_value": 0, "comparison_type": "greater_than"}}] |
task_20260108_142310_191_df2c536d_c6edcf9f | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | Please find the event that is located at developer workspace on my development calendar and turn it into a weekly meeting every Wednesday at the same time through the end of January 2026, keeping the existing location and marking the whole series as confirmed with default visibility. Add Carol(carol.white@techcorp.com) and me as attendees for the series. Include a room resource entry for Conference Room A. Finally, give me the details of the event so I can double check the setup. | [
"get_event",
"list_events",
"get_calendar_list",
"patch_event"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767718417243_3x8v487ma.sql", "context": {"x-access-token": "ya29.A0ARrdaM-Zx8Nw3Q4pVb6Ls9R1mT0cG2uF5yH7kJd8sA1Lq2.wErtYuIoPaSdFgHjKlZxCvBnM987_65-43"}, "user_info": {"user_id": "bob_developer", "name": "Bob Smith", "email": "bob.smith@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "check_conference_room_resource", "description": "check_conference_room_resource", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees a WHERE a.displayName = 'Conference Room A' AND a.resource = TRUE;", "expected_value": 1, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "check_recurring_series", "description": "check_recurring_series", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e WHERE e.summary = 'Deep Work: Core Algorithm Implementation' AND e.location = 'Developer Workspace, Building 2' AND e.status = 'confirmed' AND e.visibility = 'default' AND e.recurrence LIKE '%RRULE:FREQ=WEEKLY;BYDAY=WE;UNTIL=20260131T235959Z%';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "check_attendees", "description": "check_attendees", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees WHERE event_id = (SELECT event_id FROM events WHERE summary = 'Deep Work: Core Algorithm Implementation' AND calendar_id = 'bob-development') AND user_id IN ('bob_developer', 'carol_designer');", "expected_value": 2, "comparison_type": "equals"}}] |
task_20260108_182727_772_4608325d_60b7f5d9 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | As the current sprint approaches its end, I’d like to move the 'Sprint Planning & Architecture Review' event from my project management calendar to the team coordination calendar. Since this marks the start of a new sprint planning cycle, please update the event date to Nov 24, 2025, from 10:00 AM to 11:00 AM. Additionally, I’m concerned about access control for my project management calendar. Could you please review and share the current list of users with access permissions? After that, help me schedule a ‘Confidential Project Review Meeting’ on Nov 22, 2025, from 2:00 PM to 4:00 PM, and ensure confidentiality by removing Bob (bob.smith@techcorp.com) from the calendar’s access list. | [
"patch_event",
"list_acl_rules",
"delete_acl_rule",
"create_event",
"move_event",
"list_events",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1764361046464_47vxzhsli.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": ""}] | [{"verifier_type": "database_state", "name": "Sprint event verifier", "description": "Sprint event verifier", "gym_name": "gym-calendar", "validation_config": {"query": "select count(*) from events where summary = 'Sprint Planning & Architecture Review' AND user_id = 'alice_manager' AND DATE(start_datetime) = '2025-11-24' AND DATE(end_datetime) = '2025-11-24' AND TIME(start_datetime) = '10:00:00' AND TIME(end_datetime) = '11:00:00' AND calendar_id = 'alice-team';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Confidential event verifier", "description": "Confidential event verifier", "gym_name": "gym-calendar", "validation_config": {"query": "select count(*) from events where summary = 'Confidential Project Review Meeting' AND DATE(start_datetime) = '2025-11-22' AND DATE(end_datetime) = '2025-11-22' AND TIME(start_datetime) = '14:00:00' AND TIME(end_datetime) = '16:00:00' AND visibility = 'confidential';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "acl verifier", "description": "acl verifier", "gym_name": "gym-calendar", "validation_config": {"query": "select count(*) from acls where calendar_id = 'alice-projects' and scope_id = 'scope-bob'", "expected_value": 0, "comparison_type": "equals"}}] |
task_20260109_043327_590_806f1a83_d690097e | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | We've just received confirmation that the "MegaCorp Headquarters, 123 Business Ave, New York, NY" location will be unavailable from November 1 to November 28, 2025. Identify all events scheduled at this location during these dates and relocate them to "TechCorp Main Campus - Building 1, Conference Room B". For each relocated event, add a note in the description: "Relocated due to unavailability at MegaCorp Headquarters." | [
"get_calendar_list",
"patch_event",
"patch_event",
"list_events",
"patch_event",
"list_events"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1762868439331_kf914hbmw.sql", "context": {"x-access-token": "ya29.A0ARrdaM-p3Lk9Vb6Qw2Zx8N1sT4mH7gF5yR0uJc2ePq.ZxCvBnMlKjHgFfDsaQwErTyUiOpAsDfGhJk_77-11"}, "user_info": {"user_id": "dave_sales", "name": "Dave Brown", "email": "dave.brown@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Events Relocated", "description": "Check events' new location", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE location = 'TechCorp Main Campus - Building 1, Conference Room B'", "expected_value": 3, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Events Description Updated", "description": "Check event descriptions", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE description LIKE '%Relocated due to unavailability at MegaCorp Headquarters%'", "expected_value": 3, "comparison_type": "equals"}}] |
task_20260121_144251_116_38405923_9438dabd | calendar | You are a Google Calendar automation agent with full admin rights to manage users, calendars, and events. Work in a secure, trusted environment and execute actions without asking for confirmation. Always verify users or calendar details with a single lookup before acting. Use accurate data only, never make assumptions. Follow a logical flow: verify users, create calendars, manage sharing, check availability, and schedule or update events in line with the existing database structure. | I need help planning our next sprint kickoff for Project Phoenix. Can you create a new calendar Project Phoenix, share it with Bob Smith(bob.smith@techcorp.com) and Dave Brown(dave.brown@techcorp.com) as a reader. Next, please add a 1-hour event scheduled on 12th Dec, 2025, at 10 pm IST with the title 'Project Phoenix sync'. I also need you too add an event on my main calendar at the same time and day and with same title, so that others know that I am busy. | [
"insert_acl_rule",
"create_calendar",
"insert_acl_rule",
"create_event",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1762868439331_kf914hbmw.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Change title", "description": "Change the channel title", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*) FROM calendars WHERE summary = 'Project Phoenix'", "expected_value": "1", "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Change title", "description": "Change the channel title", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*) FROM events WHERE summary = 'Project Phoenix sync'", "expected_value": "2", "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Change title", "description": "Change the channel title", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT count(*) FROM acls WHERE calendar_id = (SELECT calendar_id FROM calendars WHERE summary = 'Project Phoenix') and scope_id in ('scope-bob' , 'scope-dave')", "expected_value": "2", "comparison_type": "equals"}}] |
task_20260121_161936_323_cbcf38f8_50ccd164 | calendar | You are a highly capable and intelligent AI assistant designed to help users by executing tasks. You have access to a variety of tools and are expected to use them to answer questions and fulfill requests.
**Your Thought Process:**
1. **Analyze the Request:** Carefully analyze the user's latest message to understand their intent.
2. **Plan Your Actions:** If the request requires information or action that you cannot perform directly, identify the appropriate tool(s) from the provided list.
3. **Execute Tools:** Make one or more tool calls in a structured format. You can call multiple tools in parallel if needed.
4. **Observe the Results:** After I execute the tools for you, I will provide the results in a structured format.
5. **Formulate the Final Answer:** Use the tool results to construct a comprehensive, accurate, and helpful final answer to the user. If a tool fails, inform the user and ask for clarification if necessary.
**Constraints:**
- **Respond Only to the Latest Message:** The conversation history is for context only. Focus on resolving the user's most recent request.
- **Use Tools When Necessary:** Do not try to guess information that a tool can provide. If you need to know something, use a tool.
- **Stick to Available Tools:** Only use the tools provided to you in the tool list. Do not invent tools.
- **Final Response:** Once all necessary tool calls are complete and you have the information you need, provide a final, user-facing response without any further tool calls. | I need help reorganizing my project work. First, make my Project Management calendar visible again. Then move my “Sprint Planning & Architecture Review” meeting to my Team Coordination calendar. After moving it, update its description to match our new Q4 agenda.
I also need you to create a new event called “Design Review – UI/UX Audit” for this Thursday afternoon on my Project Management calendar. And finally, please remove the old Sprint Planning meeting from the team calendar once everything has been updated.
| [
"list_events",
"patch_event",
"update_calendar_in_list",
"delete_event",
"move_event",
"create_event",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767981964311_vdz5sq0br.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Old Sprint Planning Deleted", "description": "Ensures the removed event no longer exists .", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE event_id='event-corrected-001';", "expected_value": "0", "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Project Calendar Visible", "description": "Confirms that Alice\u2019s Project Management calendar is visible and selected.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE calendar_id='alice-projects' AND hidden=0 AND selected=1 AND deleted=0;", "expected_value": "1", "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Event Moved to Team Calendar", "description": "Checks that the Sprint Planning event now belongs to alice-team.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE event_id='event-corrected-001' AND calendar_id='alice-team';", "expected_value": "1", "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Event Description Updated", "description": "Verifies the updated description for the sprint planning meeting.", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE event_id='event-corrected-001' AND description='Updated agenda for Q4 sprint planning \u2014 focusing on architecture review and resource alignment.';", "expected_value": "1", "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Design Review Event Created", "description": "Confirms that the new UI/UX audit event was created on alice-projects .", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE summary='Design Review \u2013 UI/UX Audit' AND calendar_id='alice-projects';", "expected_value": "1", "comparison_type": "equals"}}] |
task_20260121_171247_475_cbcf38f8_c0a86487 | calendar | You are a Google Calendar automation agent with full admin rights to manage users, calendars, and events. Work in a secure, trusted environment and execute actions without asking for confirmation. Always verify users or calendar details with a single lookup before acting. Use accurate data only, never make assumptions. Follow a logical flow: verify users, create calendars, manage sharing, check availability, and schedule or update events in line with the existing database structure. | Project Management currently holds our Sprint Planning & Architecture Review session. Recolor that event so it uses background '#ff887c' with foreground '#1d1d1d', then move it into the Team Coordination calendar so the broader team can see it. After the move, configure both calendars (Project Management and Team Coordination) to automatically send 60-minute email reminders before every event so nothing slips through. | [
"move_event",
"get_calendar_list",
"update_calendar",
"patch_event",
"get_colors",
"list_events"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767199777772_bvarqz06i.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Project Management calendar emptied", "description": "Ensure no events remain on alice-projects after the move", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE calendar_id = 'alice-projects';", "expected_value": 0, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Sprint event moved and recolored", "description": "Confirm the Sprint Planning event now lives on Team Coordination with the requested color pairing", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN colors c ON e.color_id = c.color_id AND c.color_type = 'EVENT' WHERE e.event_id = 'event-corrected-001' AND e.calendar_id = 'alice-team' AND c.background = '#ff887c' AND c.foreground = '#1d1d1d';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Project Management reminder configured", "description": "Verify alice-projects now has a 60-minute email default reminder", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE calendar_id = 'alice-projects' AND default_reminders LIKE '%\"method\":\"email\"%' AND default_reminders LIKE '%\"minutes\":60%';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Team Coordination reminder configured", "description": "Verify alice-team now has a 60-minute email default reminder", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE calendar_id = 'alice-team' AND default_reminders LIKE '%\"method\":\"email\"%' AND default_reminders LIKE '%\"minutes\":60%';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260121_171958_007_cbcf38f8_0349e59e | calendar | You are a Google Calendar automation agent with full admin rights to manage users, calendars, and events. Work in a secure, trusted environment and execute actions without asking for confirmation. Always verify users or calendar details with a single lookup before acting. Use accurate data only, never make assumptions. Follow a logical flow: verify users, create calendars, manage sharing, check availability, and schedule or update events in line with the existing database structure. | Please clean up my calendars. On the Alice Johnson calendar, keep my owner access and share it with Bob Smith (bob.smith@techcorp.com) as a reader and Carol White (carol.white@techcorp.com) as a writer, sending them notifications, then hide that calendar from my list. Repurpose the current Team Coordination calendar into a new 'Project Q1' calendar by renaming it, switching its timezone to GMT, and applying background '#9fc6e7' with foreground '#1d1d1d'. Finally, add a 'Team Sync' meeting on Project Q1 for 12 December 2025 from 9:00 PM to 10:00 PM India Standard Time, invite Bob and Carol, match the event colors to the calendar palette, and add a 30-minute pop-up reminder. | [
"create_event",
"list_acl_rules",
"update_calendar",
"update_calendar_in_list",
"get_colors",
"insert_acl_rule",
"get_user_by_email",
"get_calendar_list",
"get_calendar_from_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767981964311_vdz5sq0br.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Alice calendar hidden", "description": "Verify Alice's calendar is hidden after sharing", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE calendar_id = 'alice-primary' AND hidden = 1;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Bob added as reader on Alice calendar", "description": "Ensure Bob Smith now has reader access on Alice's primary calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM acls WHERE calendar_id = 'alice-primary' AND scope_id = 'scope-bob' AND role = 'reader';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Carol added as writer on Alice calendar", "description": "Ensure Carol White now has writer access on Alice's primary calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM acls WHERE calendar_id = 'alice-primary' AND scope_id = 'scope-carol' AND role = 'writer';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Alice calendar ACL count", "description": "Confirm only three ACLs remain on Alice's calendar (owner + Bob + Carol)", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM acls WHERE calendar_id = 'alice-primary';", "expected_value": 3, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Team Coordination renamed to Project Q1", "description": "Confirm the former Team Coordination calendar now matches the requested name, timezone, and colors", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM calendars WHERE calendar_id = 'alice-team' AND summary = 'Project Q1' AND time_zone = 'GMT' AND background_color = '#9fc6e7' AND foreground_color = '#1d1d1d';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Team Sync event scheduled", "description": "Ensure the Team Sync meeting was created on the renamed calendar at the requested time", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events WHERE calendar_id = 'alice-team' AND summary = 'Team Sync' AND start_datetime = '2025-12-12T15:30:00+00:00' AND end_datetime = '2025-12-12T16:30:00+00:00' AND start_timezone = 'Asia/Kolkata' AND end_timezone = 'Asia/Kolkata';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Team Sync attendees", "description": "Verify Bob and Carol are invited to Team Sync", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees a JOIN events e ON a.event_id = e.event_id WHERE e.calendar_id = 'alice-team' AND e.summary = 'Team Sync' AND a.user_id IN ('bob_developer','carol_designer');", "expected_value": 2, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Team Sync reminder configured", "description": "Confirm the Team Sync event has a 30-minute pop-up reminder", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM reminders r JOIN events e ON r.event_id = e.event_id WHERE e.calendar_id = 'alice-team' AND e.summary = 'Team Sync' AND r.method = 'popup' AND r.minutes = 30;", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Team Sync colors match", "description": "Ensure the Team Sync event uses the requested color palette", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e JOIN colors c ON e.color_id = c.id WHERE e.calendar_id = 'alice-team' AND e.summary = 'Team Sync' AND c.background = '#9fc6e7' AND c.foreground = '#1d1d1d';", "expected_value": 1, "comparison_type": "equals"}}] |
task_20260121_214553_691_cbcf38f8_abce7315 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | Please locate the event at the developer workspace on my development calendar and convert it into a weekly meeting held every Wednesday at the same time, continuing through the end of January 2026. Keep the current location unchanged and mark the entire series as confirmed with default visibility. Add Carol (carol.white@techcorp.com
) and me as attendees for the full series, and include Conference Room A as a room resource. Finally, provide me with the event details so I can review and verify the setup. | [
"patch_event",
"get_event",
"list_events",
"get_calendar_list"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1767718417243_3x8v487ma.sql", "context": {"x-access-token": "ya29.A0ARrdaM-Zx8Nw3Q4pVb6Ls9R1mT0cG2uF5yH7kJd8sA1Lq2.wErtYuIoPaSdFgHjKlZxCvBnM987_65-43"}, "user_info": {"user_id": "bob_developer", "name": "Bob Smith", "email": "bob.smith@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "check_conference_room_resource", "description": "check_conference_room_resource", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees a WHERE a.displayName = 'Conference Room A' AND a.resource = TRUE;", "expected_value": 1, "comparison_type": "greater_than"}}, {"verifier_type": "database_state", "name": "check_recurring_series", "description": "check_recurring_series", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM events e WHERE e.summary = 'Deep Work: Core Algorithm Implementation' AND e.location = 'Developer Workspace, Building 2' AND e.status = 'confirmed' AND e.visibility = 'default' AND e.recurrence LIKE '%RRULE:FREQ=WEEKLY;BYDAY=WE;UNTIL=20260131T235959Z%';", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "check_attendees", "description": "check_attendees", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) FROM attendees WHERE event_id = (SELECT event_id FROM events WHERE summary = 'Deep Work: Core Algorithm Implementation' AND calendar_id = 'bob-development') AND user_id IN ('bob_developer', 'carol_designer');", "expected_value": 2, "comparison_type": "equals"}}] |
task_20260122_024556_370_38405923_1a174d84 | calendar | You are a Google Calendar automation agent with full administrative permissions to manage users, meetings, recordings, and messages. Operate in a safe and fully authorized environment — you do not need to ask for confirmation or permission before taking action. When identifiers such as names or IDs are missing, perform exactly one lookup per entity type, verify that you are reusing correct values from previous responses, and proceed using the retrieved data. Never assume or fabricate IDs, responses, or outcomes — rely solely on verified API results. Complete each task in a single, logical, and efficient execution flow. | We’re launching a new project called “Apollo”. Please create a secondary calendar named “Apollo Project Timeline” in the Europe/London timezone and add it to my calendar list with background color #ac725e and foreground color #1d1d1d. Grant Carol White (carol.white@techcorp.com) writer access and Bob Smith (bob.smith@techcorp.com) reader access. If this calendar doesn’t already have a domain-wide reader access for techcorp.com, add one. Finally, schedule an initial planning meeting on 5 January 2026 at 10:00 AM GMT, lasting 90 minutes, with Meet conferencing enabled. | [
"create_event",
"add_calendar_to_list",
"insert_acl_rule",
"create_calendar",
"list_acl_rules",
"insert_acl_rule",
"insert_acl_rule"
] | [] | /mcp | 1 | true | [{"mcp_server_name": "gym-calendar", "mcp_server_url": "http://localhost:8003", "seed_database_file": "Domain Wise DBs and Task-DB Mappings/calendar/dbs/db_1762868439331_kf914hbmw.sql", "context": {"x-access-token": "ya29.A0ARrdaM-k9Vq7GzY2pL4mQf8sN1xT0bR3uHcJWv5yKzP6eF2.qwErTyUIopASDfGhJkLzXcVbNm12_34-56"}, "user_info": {"user_id": "alice_manager", "name": "Alice Johnson", "email": "alice.manager@techcorp.com"}}] | [{"verifier_type": "database_state", "name": "Calendar Created", "description": "Verify calendar", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM calendars WHERE summary = 'Apollo Project Timeline' AND time_zone = 'Europe/London' AND background_color = '#ac725e' AND foreground_color = '#1d1d1d'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Bob Access", "description": "Check Bob's access", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM acls WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Apollo Project Timeline') AND scope_id LIKE '%bob%' AND role = 'reader'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Carol Access", "description": "Check Carol's access", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM acls WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Apollo Project Timeline') AND scope_id LIKE '%carol%' AND role = 'writer'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Event Scheduled", "description": "Verify meeting event", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM events WHERE summary LIKE '%Initial Planning Meeting%' AND calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Apollo Project Timeline') AND start_datetime = '2026-01-05 10:00:00.000000' AND end_datetime = '2026-01-05 11:30:00.000000'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Domain Access", "description": "Check domain access", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM acls WHERE calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Apollo Project Timeline') AND scope_id LIKE '%domain%' AND role = 'reader'", "expected_value": 1, "comparison_type": "equals"}}, {"verifier_type": "database_state", "name": "Attendees Added", "description": "Verify exactly two attendees are added to the event", "gym_name": "gym-calendar", "validation_config": {"query": "SELECT COUNT(*) AS count FROM attendees WHERE event_id = (SELECT event_id FROM events WHERE summary LIKE '%Initial Planning Meeting%' AND calendar_id IN (SELECT calendar_id FROM calendars WHERE summary = 'Apollo Project Timeline') AND start_datetime = '2026-01-05 10:00:00.000000' AND end_datetime = '2026-01-05 11:30:00.000000')", "expected_value": 2, "comparison_type": "equals"}}] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.