MCP Monday: Scheduling, Reporting, and Data, Handled

Table of Contents

Every Monday, we pull back the curtain on what’s shipping in Workato Enterprise MCP.

This Week

Three new servers join the catalog this week: Calendly for scheduling, MailChimp Marketing Reports for campaign and audience analytics, and Snowflake Data Explorer for natural-language data exploration. That brings the catalog to 58 production-ready servers.

What’s New

Calendly — 10 tools

The Calendly MCP server handles the external-facing scheduling lifecycle. It allows users to look up event types, find open slots, book or cancel a meeting on an invitee’s behalf, pull invitee details and intake answers, and adjust availability. 

View Calendly documentation →

MailChimp Marketing Reports — 7 tools

A read-only companion to the Mailchimp Campaign Management server. This server discovers audiences, campaigns, and contacts. It can also report on sent-campaign performance, individual subscriber engagement, and audience growth and health. 

View MailChimp Marketing Reports documentation →

Snowflake Data Explorer — 9 tools

Lets an agent navigate databases, schemas, and tables, inspect column definitions, sample rows, and run read-only SQL queries.

View Snowflake Data Explorer documentation →

Why This Matters

These three servers don’t just let an agent act, they make sure it checks first.

Calendly won’t let you rewrite an event type’s availability blind. update_event_type_availability uses overwrite semantics, so it reads the current rule set through get_event_type_availability before anything gets replaced. Change the wrong week’s hours by accident, and there’s no partial update to blame, it’s why the read step isn’t optional.

MailChimp Marketing Reports takes that same caution a step further: it doesn’t have write tools at all. Reporting and analysis stay separate from sending and scheduling, so a question like “how did last week’s campaign perform” can never turn into an accidental edit of the campaign itself.

Snowflake Data Explorer applies the same idea to discovery. get_table_schema and get_table_sample let an agent understand a table’s structure and actual contents before it ever writes a query, and execute_query itself is restricted to read-only SQL, so exploration can never slide into a write.

Composability Pairings

Calendly + Snowflake Data Explorer: pull the list of accounts that hit a usage threshold last quarter from Snowflake, then generate a single-use Calendly link for each one to send in outbound follow-ups.

MailChimp Marketing Reports + Mailchimp Campaign Management: check last week’s open and click rates on the Reports side, then draft the follow-up send on the Campaign Management side, informed by what actually worked.

Snowflake Data Explorer + Slack: run a curated revenue query and drop the results straight into a team channel, no export, no screenshot.

Real-World Use Cases

Calendly for the sales representative managing external meetings.

  • “Book a 30-minute intro call with jane@acme.com for next Tuesday afternoon.”
  • “Who’s booked time with me this week?”
  • “I’m traveling to London next month, update my available hours to UK business hours.”
  • “Generate a single-use scheduling link for my enterprise demo event type.”

Design notes:

update_event_type_availability always reads current rules first, since the update overwrites the full set. list_calendly_bookings gives a top-level overview, and get_calendly_booking is for when a question needs more detail than that summary provides.

 

MailChimp Marketing Reports for the marketer checking campaign performance.

  • “How did last week’s campaign perform?”
  • “Is my newsletter audience growing?”
  • “What’s this subscriber’s engagement history across our campaigns?”
  • “Compare the open rates on my last two campaigns.”

Design notes:

get_campaign_report only returns data once a campaign has actually been sent. This server is read-only by design, pairing with Mailchimp Campaign Management for anything that needs to create, send, or edit.

 

Snowflake Data Explorer for the analyst pulling numbers for a board deck.

  • “Find tables related to subscriptions.”
  • “What columns are in the CUSTOMER_EVENTS table?”
  • “Query the top 100 customers by revenue from last quarter.”
  • “Run the monthly revenue summary query.”

Design notes:

get_table_schema and get_table_sample are meant to run before execute_query, so a query is built against real structure and real data, not assumptions. 

What Makes These Enterprise-Ready

Verified User Access: All tool calls execute under the authenticated user’s own Calendly, MailChimp, or Snowflake identity. Bookings, cancellations, and query executions are attributed to the acting user.

Managed infrastructure: Workato hosts, scales, and maintains all three servers. No API versions to track, no rate limits to manage, no infrastructure to provision.

Read-before-write: Calendly’s update_event_type_availability reads the existing rule set before overwriting it, since the update replaces everything at once.

Read-only by design: MailChimp Marketing Reports has no create, update, or delete tools, and Snowflake’s execute_query is restricted to read-only SQL. Both servers can observe a system without ever changing it.

Composable: These servers can chain with Mailchimp Campaign Management, Slack, and the rest of the catalog for workflows that span scheduling, reporting, and data.

Audit trails: Every tool call is logged with full context: who, what, when, and what was returned.

Get Started

Calendly, MailChimp Marketing Reports, and Snowflake Data Explorer are available now for Workato customers with Enterprise MCP.

Install time: Minutes

Custom development: None

Deployment complexity: One-click activation

View the full catalog — now 58 pre-built servers.

Ready to connect your stack? Check out our self-service trial.

The bottom line: Other vendors are still announcing MCP roadmaps. We’re shipping production-ready servers every Monday.

See you next Monday.

Was this post useful?

Get the best of Workato straight to your inbox.

Table of Contents