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.
@@ -1,9 +1,9 @@
1
1
  {
2
- "generatedAt": "2026-07-16T18:20:43.916Z",
2
+ "generatedAt": "2026-07-16T18:54:52.942Z",
3
3
  "generatedFrom": "dist/bin/mcp-stdio-server.js",
4
4
  "serverInfo": {
5
5
  "name": "mcp-scraper",
6
- "version": "0.21.5"
6
+ "version": "0.22.0"
7
7
  },
8
8
  "counts": {
9
9
  "unified_stdio": 159
@@ -4201,7 +4201,7 @@
4201
4201
  {
4202
4202
  "name": "call_service_connection_action",
4203
4203
  "title": "Run Connected Service Action",
4204
- "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.",
4204
+ "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.",
4205
4205
  "inputSchema": {
4206
4206
  "type": "object",
4207
4207
  "properties": {
@@ -8600,7 +8600,7 @@
8600
8600
  {
8601
8601
  "name": "gmail_send_message",
8602
8602
  "title": "Send Gmail Message",
8603
- "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.",
8603
+ "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.",
8604
8604
  "inputSchema": {
8605
8605
  "type": "object",
8606
8606
  "properties": {
@@ -9036,7 +9036,7 @@
9036
9036
  {
9037
9037
  "name": "google_calendar_create_event",
9038
9038
  "title": "Create Calendar Event",
9039
- "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.",
9039
+ "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.",
9040
9040
  "inputSchema": {
9041
9041
  "type": "object",
9042
9042
  "properties": {
@@ -9059,8 +9059,9 @@
9059
9059
  },
9060
9060
  "description": {
9061
9061
  "type": "string",
9062
+ "minLength": 1,
9062
9063
  "maxLength": 5000,
9063
- "description": "Event description."
9064
+ "description": "Required event context. Include the purpose or agenda supplied by the user and the Zoom join link when one was created."
9064
9065
  },
9065
9066
  "location": {
9066
9067
  "type": "string",
@@ -9081,13 +9082,40 @@
9081
9082
  "type": "string",
9082
9083
  "maxLength": 100,
9083
9084
  "description": "IANA timezone, e.g. \"America/Denver\". Applies to both start and end."
9085
+ },
9086
+ "attendees": {
9087
+ "type": "array",
9088
+ "items": {
9089
+ "type": "object",
9090
+ "properties": {
9091
+ "email": {
9092
+ "type": "string",
9093
+ "format": "email",
9094
+ "description": "Invitee email address."
9095
+ },
9096
+ "displayName": {
9097
+ "type": "string",
9098
+ "minLength": 1,
9099
+ "maxLength": 200,
9100
+ "description": "Invitee name when known."
9101
+ }
9102
+ },
9103
+ "required": [
9104
+ "email"
9105
+ ],
9106
+ "additionalProperties": false
9107
+ },
9108
+ "maxItems": 100,
9109
+ "description": "Required attendee list. Include every person the user asked to invite; use an empty array only when no invitee was identified."
9084
9110
  }
9085
9111
  },
9086
9112
  "required": [
9087
9113
  "connectionId",
9088
9114
  "summary",
9115
+ "description",
9089
9116
  "startDateTime",
9090
- "endDateTime"
9117
+ "endDateTime",
9118
+ "attendees"
9091
9119
  ],
9092
9120
  "additionalProperties": false,
9093
9121
  "$schema": "http://json-schema.org/draft-07/schema#"
@@ -19425,7 +19453,7 @@
19425
19453
  {
19426
19454
  "name": "zoom_create_meeting",
19427
19455
  "title": "Create Zoom Meeting",
19428
- "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.",
19456
+ "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.",
19429
19457
  "inputSchema": {
19430
19458
  "type": "object",
19431
19459
  "properties": {
@@ -19459,14 +19487,16 @@
19459
19487
  },
19460
19488
  "agenda": {
19461
19489
  "type": "string",
19490
+ "minLength": 1,
19462
19491
  "maxLength": 2000,
19463
- "description": "Meeting description/agenda."
19492
+ "description": "Required meeting description or agenda. Preserve the purpose and context supplied by the user."
19464
19493
  }
19465
19494
  },
19466
19495
  "required": [
19467
19496
  "connectionId",
19468
19497
  "topic",
19469
- "startDateTime"
19498
+ "startDateTime",
19499
+ "agenda"
19470
19500
  ],
19471
19501
  "additionalProperties": false,
19472
19502
  "$schema": "http://json-schema.org/draft-07/schema#"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-scraper",
3
- "version": "0.21.5",
3
+ "version": "0.22.0",
4
4
  "description": "MCP server for MCP Scraper web intelligence tools",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",