mcp-scraper 0.21.5 → 0.22.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@ import {
7
7
  registerMemoryMcpTools,
8
8
  registerPaaExtractorMcpTools,
9
9
  registerSerpIntelligenceCaptureTools
10
- } from "../chunk-QO7HX67W.js";
10
+ } from "../chunk-3SQTNNGK.js";
11
11
  import "../chunk-R7EETU7Z.js";
12
12
  import "../chunk-MTSBI7ZH.js";
13
13
  import {
@@ -16,7 +16,7 @@ import {
16
16
  import "../chunk-XGIPATLV.js";
17
17
  import {
18
18
  PACKAGE_VERSION
19
- } from "../chunk-YLX3SKJN.js";
19
+ } from "../chunk-Q6GSQEE4.js";
20
20
  import "../chunk-JHI373VB.js";
21
21
  import "../chunk-M2S27J6Z.js";
22
22
  import "../chunk-ICT7DDHL.js";
@@ -19,7 +19,7 @@ import {
19
19
  } from "./chunk-XGIPATLV.js";
20
20
  import {
21
21
  PACKAGE_VERSION
22
- } from "./chunk-YLX3SKJN.js";
22
+ } from "./chunk-Q6GSQEE4.js";
23
23
  import {
24
24
  MC_PER_CREDIT
25
25
  } from "./chunk-JHI373VB.js";
@@ -4736,11 +4736,15 @@ var GoogleCalendarCreateEventInputSchema = {
4736
4736
  connectionId: z.string().min(1).describe("A Google Calendar connectionId from list_service_connections, with actionsEnabled true."),
4737
4737
  calendarId: z.string().min(1).default("primary").describe('Calendar to create the event in. Default "primary".'),
4738
4738
  summary: z.string().min(1).max(500).describe("Event title."),
4739
- description: z.string().max(5e3).optional().describe("Event description."),
4739
+ description: z.string().min(1).max(5e3).describe("Required event context. Include the purpose or agenda supplied by the user and the Zoom join link when one was created."),
4740
4740
  location: z.string().max(500).optional().describe("Event location."),
4741
4741
  startDateTime: z.string().min(1).describe('Start time, ISO 8601, e.g. "2026-07-15T09:00:00-06:00".'),
4742
4742
  endDateTime: z.string().min(1).describe('End time, ISO 8601, e.g. "2026-07-15T10:00:00-06:00".'),
4743
- timeZone: z.string().max(100).optional().describe('IANA timezone, e.g. "America/Denver". Applies to both start and end.')
4743
+ timeZone: z.string().max(100).optional().describe('IANA timezone, e.g. "America/Denver". Applies to both start and end.'),
4744
+ attendees: z.array(z.object({
4745
+ email: z.string().email().describe("Invitee email address."),
4746
+ displayName: z.string().min(1).max(200).optional().describe("Invitee name when known.")
4747
+ }).strict()).max(100).describe("Required attendee list. Include every person the user asked to invite; use an empty array only when no invitee was identified.")
4744
4748
  };
4745
4749
  var GoogleCalendarCreateEventOutputSchema = {
4746
4750
  ok: z.boolean(),
@@ -4753,7 +4757,7 @@ var ZoomCreateMeetingInputSchema = {
4753
4757
  startDateTime: z.string().min(1).describe('Start time, ISO 8601, e.g. "2026-07-15T09:00:00-06:00".'),
4754
4758
  durationMinutes: z.number().int().min(1).max(1440).default(30).describe("Meeting duration in minutes. Default 30."),
4755
4759
  timezone: z.string().max(100).optional().describe('IANA timezone, e.g. "America/Denver".'),
4756
- agenda: z.string().max(2e3).optional().describe("Meeting description/agenda.")
4760
+ agenda: z.string().min(1).max(2e3).describe("Required meeting description or agenda. Preserve the purpose and context supplied by the user.")
4757
4761
  };
4758
4762
  var ZoomCreateMeetingOutputSchema = {
4759
4763
  ok: z.boolean(),
@@ -5454,21 +5458,21 @@ function registerPaaExtractorMcpTools(server, executor, options = {}) {
5454
5458
  }, async (input) => executor.slackSendMessage(input));
5455
5459
  server.registerTool("gmail_send_message", {
5456
5460
  title: "Send Gmail Message",
5457
- description: "Send an email through a connected, action-enabled Gmail connection. Requires a connectionId from list_service_connections with actionsEnabled true; the person must have explicitly turned actions on for that connection.",
5461
+ description: "Preferred path for sending a simple plain-text email through a connected, action-enabled Gmail connection. Provide only connectionId, to, subject, and body; MCP Scraper constructs the MIME message and base64url encoding server-side. Never construct raw MIME or base64 yourself, and do not use call_service_connection_action for Gmail send-message. Requires a connectionId from list_service_connections with actionsEnabled true.",
5458
5462
  inputSchema: GmailSendMessageInputSchema,
5459
5463
  outputSchema: recordOutputSchema("gmail_send_message", GmailSendMessageOutputSchema),
5460
5464
  annotations: { title: "Send Gmail Message", readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: true }
5461
5465
  }, async (input) => executor.gmailSendMessage(input));
5462
5466
  server.registerTool("google_calendar_create_event", {
5463
5467
  title: "Create Calendar Event",
5464
- description: "Create an event on a connected, action-enabled Google Calendar connection. Requires a connectionId from list_service_connections with actionsEnabled true; the person must have explicitly turned actions on for that connection.",
5468
+ description: "Create a complete event on a connected, action-enabled Google Calendar connection. Always preserve the supplied purpose in description, include the Zoom join link when available, and include every explicitly named invitee in attendees. Do not create a bare meeting event. Requires a connectionId from list_service_connections with actionsEnabled true.",
5465
5469
  inputSchema: GoogleCalendarCreateEventInputSchema,
5466
5470
  outputSchema: recordOutputSchema("google_calendar_create_event", GoogleCalendarCreateEventOutputSchema),
5467
5471
  annotations: { title: "Create Calendar Event", readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: true }
5468
5472
  }, async (input) => executor.googleCalendarCreateEvent(input));
5469
5473
  server.registerTool("zoom_create_meeting", {
5470
5474
  title: "Create Zoom Meeting",
5471
- description: "Create a meeting on a connected, action-enabled Zoom connection. Requires a connectionId from list_service_connections with actionsEnabled true; the person must have explicitly turned actions on for that connection.",
5475
+ description: "Create a meeting on a connected, action-enabled Zoom connection and preserve the user-supplied purpose in the required agenda. Zoom creates the join link; invitees must then be added through google_calendar_create_event attendees. Requires a connectionId from list_service_connections with actionsEnabled true.",
5472
5476
  inputSchema: ZoomCreateMeetingInputSchema,
5473
5477
  outputSchema: recordOutputSchema("zoom_create_meeting", ZoomCreateMeetingOutputSchema),
5474
5478
  annotations: { title: "Create Zoom Meeting", readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: true }
@@ -5517,7 +5521,7 @@ function registerPaaExtractorMcpTools(server, executor, options = {}) {
5517
5521
  }, async (input) => executor.renewConnectedDataDownload(input));
5518
5522
  server.registerTool("call_service_connection_action", {
5519
5523
  title: "Run Connected Service Action",
5520
- description: "Run one explicitly allowlisted write or mutation on a tenant-owned OAuth or remote MCP connection. First call list_service_connections, use a connection with actionsEnabled true, describe the exact actionTools entry to obtain its live schema, and supply only that action's arguments. The server rejects arbitrary action names, inactive or foreign connections, disabled actions, and every adminBlockedTools entry. This can include Google Drive folder creation or file copies, Resend delivery, and GitHub mutations only when those exact actions are live and approved. Sends, deletes, merges, workflow execution, and content changes are high impact.",
5524
+ description: "Run one explicitly allowlisted write or mutation on a tenant-owned OAuth or remote MCP connection. For Gmail send-message, use gmail_send_message instead and never construct raw MIME or base64. For other providers, first call list_service_connections, use a connection with actionsEnabled true, describe the exact actionTools entry to obtain its live schema, and supply only that action's arguments. The server rejects arbitrary action names, inactive or foreign connections, disabled actions, and every adminBlockedTools entry. This can include Google Drive folder creation or file copies, Resend delivery, and GitHub mutations only when those exact actions are live and approved. Sends, deletes, merges, workflow execution, and content changes are high impact.",
5521
5525
  inputSchema: CallServiceConnectionActionInputSchema,
5522
5526
  outputSchema: recordOutputSchema("call_service_connection_action", CallServiceConnectionActionOutputSchema),
5523
5527
  annotations: { title: "Run Connected Service Action", readOnlyHint: false, destructiveHint: true, idempotentHint: false, openWorldHint: true }
@@ -9848,4 +9852,4 @@ export {
9848
9852
  registerMemoryMcpTools,
9849
9853
  MemoryMcpToolExecutor
9850
9854
  };
9851
- //# sourceMappingURL=chunk-QO7HX67W.js.map
9855
+ //# sourceMappingURL=chunk-3SQTNNGK.js.map