mcp-scraper 0.9.0 → 0.10.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-FZG427QD.js";
10
+ } from "../chunk-IRYBBEZJ.js";
11
11
  import "../chunk-R7EETU7Z.js";
12
12
  import "../chunk-HPV4VOQX.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-RD5JOAWS.js";
19
+ } from "../chunk-B7BAJU7K.js";
20
20
  import "../chunk-HL33CGJF.js";
21
21
  import "../chunk-M2S27J6Z.js";
22
22
 
@@ -0,0 +1,7 @@
1
+ // src/version.ts
2
+ var PACKAGE_VERSION = "0.10.0";
3
+
4
+ export {
5
+ PACKAGE_VERSION
6
+ };
7
+ //# sourceMappingURL=chunk-B7BAJU7K.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/version.ts"],"sourcesContent":["export const PACKAGE_VERSION = '0.10.0'\n"],"mappings":";AAAO,IAAM,kBAAkB;","names":[]}
@@ -17,7 +17,7 @@ import {
17
17
  } from "./chunk-XGIPATLV.js";
18
18
  import {
19
19
  PACKAGE_VERSION
20
- } from "./chunk-RD5JOAWS.js";
20
+ } from "./chunk-B7BAJU7K.js";
21
21
  import {
22
22
  MC_PER_CREDIT
23
23
  } from "./chunk-HL33CGJF.js";
@@ -3867,9 +3867,22 @@ var ListServiceConnectionsOutputSchema = {
3867
3867
  providerConfigKey: z.string(),
3868
3868
  label: z.string(),
3869
3869
  status: z.string(),
3870
- actionsEnabled: z.boolean()
3870
+ actionsEnabled: z.boolean(),
3871
+ readTools: z.array(z.string()).describe("Tool names this connection can be read with via read_service_connection."),
3872
+ vaultName: z.string().nullable().describe("Memory vault this connection's digest writes into, if it has run at least once. Search it with memory-search."),
3873
+ tableName: z.string().nullable().describe("Table this connection's digest writes structured rows into, if it has run at least once. Query it with table-query.")
3871
3874
  }))
3872
3875
  };
3876
+ var ReadServiceConnectionInputSchema = {
3877
+ connectionId: z.string().min(1).describe("A connectionId from list_service_connections."),
3878
+ tool: z.string().min(1).describe("One of that connection's readTools (from list_service_connections). An unlisted tool name is rejected with the allowed list."),
3879
+ args: z.record(z.string(), z.unknown()).optional().describe("Arguments for the tool, if it needs any (e.g. a channel id, a date filter).")
3880
+ };
3881
+ var ReadServiceConnectionOutputSchema = {
3882
+ ok: z.boolean(),
3883
+ result: z.unknown().optional(),
3884
+ error: NullableString
3885
+ };
3873
3886
  var SlackSendMessageInputSchema = {
3874
3887
  connectionId: z.string().min(1).describe("A Slack connectionId from list_service_connections, with actionsEnabled true."),
3875
3888
  channel: z.string().min(1).describe(`Slack channel ID to send to, e.g. "C1234567890". Get this from the connection's own read tools, not guessed.`),
@@ -3906,6 +3919,19 @@ var GoogleCalendarCreateEventOutputSchema = {
3906
3919
  result: z.unknown().optional(),
3907
3920
  error: NullableString
3908
3921
  };
3922
+ var ZoomCreateMeetingInputSchema = {
3923
+ connectionId: z.string().min(1).describe("A Zoom connectionId from list_service_connections, with actionsEnabled true."),
3924
+ topic: z.string().min(1).max(200).describe("Meeting topic/title."),
3925
+ startDateTime: z.string().min(1).describe('Start time, ISO 8601, e.g. "2026-07-15T09:00:00-06:00".'),
3926
+ durationMinutes: z.number().int().min(1).max(1440).default(30).describe("Meeting duration in minutes. Default 30."),
3927
+ timezone: z.string().max(100).optional().describe('IANA timezone, e.g. "America/Denver".'),
3928
+ agenda: z.string().max(2e3).optional().describe("Meeting description/agenda.")
3929
+ };
3930
+ var ZoomCreateMeetingOutputSchema = {
3931
+ ok: z.boolean(),
3932
+ result: z.unknown().optional(),
3933
+ error: NullableString
3934
+ };
3909
3935
 
3910
3936
  // src/mcp/rank-tracker-blueprint.ts
3911
3937
  var DEFAULT_MODES = ["maps", "organic", "ai_overview", "paa"];
@@ -4579,7 +4605,7 @@ function registerPaaExtractorMcpTools(server, executor, options = {}) {
4579
4605
  }, async (input) => formatCreditsInfo(await executor.creditsInfo(input), input));
4580
4606
  server.registerTool("list_service_connections", {
4581
4607
  title: "List Connected Services",
4582
- description: "List the third-party service connections (Slack, Gmail, Google Calendar) the account has authorized, with each connection's id and whether it is enabled for live actions. Get a connectionId from here before calling slack_send_message, gmail_send_message, or google_calendar_create_event.",
4608
+ description: "List the third-party service connections (Slack, Gmail, Google Calendar, Zoom, Xero) the account has authorized, with each connection's id, whether it is enabled for live actions, its live readTools, and its digest vault/table (if the digest has run). Get a connectionId from here before calling read_service_connection, slack_send_message, gmail_send_message, google_calendar_create_event, or zoom_create_meeting. For already-digested history, search vaultName with memory-search or query tableName with table-query instead of a live read.",
4583
4609
  inputSchema: ListServiceConnectionsInputSchema,
4584
4610
  outputSchema: recordOutputSchema("list_service_connections", ListServiceConnectionsOutputSchema),
4585
4611
  annotations: { title: "List Connected Services", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: false }
@@ -4605,6 +4631,20 @@ function registerPaaExtractorMcpTools(server, executor, options = {}) {
4605
4631
  outputSchema: recordOutputSchema("google_calendar_create_event", GoogleCalendarCreateEventOutputSchema),
4606
4632
  annotations: { title: "Create Calendar Event", readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: true }
4607
4633
  }, async (input) => executor.googleCalendarCreateEvent(input));
4634
+ server.registerTool("zoom_create_meeting", {
4635
+ title: "Create Zoom Meeting",
4636
+ 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.",
4637
+ inputSchema: ZoomCreateMeetingInputSchema,
4638
+ outputSchema: recordOutputSchema("zoom_create_meeting", ZoomCreateMeetingOutputSchema),
4639
+ annotations: { title: "Create Zoom Meeting", readOnlyHint: false, destructiveHint: false, idempotentHint: false, openWorldHint: true }
4640
+ }, async (input) => executor.zoomCreateMeeting(input));
4641
+ server.registerTool("read_service_connection", {
4642
+ title: "Read Connected Service",
4643
+ description: "Call one live, read-only tool on a connected service (Slack/Gmail/Google Calendar/Zoom/Xero) to get current data \u2014 e.g. get-conversation-history, list-messages, list-invoices. Requires a connectionId and a tool name from that connection's readTools in list_service_connections; an unlisted tool name is rejected. For history that's already been digested, prefer memory-search over the connection's vaultName or table-query over its tableName \u2014 faster and free.",
4644
+ inputSchema: ReadServiceConnectionInputSchema,
4645
+ outputSchema: recordOutputSchema("read_service_connection", ReadServiceConnectionOutputSchema),
4646
+ annotations: { title: "Read Connected Service", readOnlyHint: true, destructiveHint: false, idempotentHint: true, openWorldHint: true }
4647
+ }, async (input) => executor.readServiceConnection(input));
4608
4648
  }
4609
4649
 
4610
4650
  // src/mcp/http-mcp-tool-executor.ts
@@ -4901,6 +4941,12 @@ var HttpMcpToolExecutor = class {
4901
4941
  googleCalendarCreateEvent(input) {
4902
4942
  return this.call("/schedule-connections/actions/google-calendar/create-event", input);
4903
4943
  }
4944
+ zoomCreateMeeting(input) {
4945
+ return this.call("/schedule-connections/actions/zoom/create-meeting", input);
4946
+ }
4947
+ readServiceConnection(input) {
4948
+ return this.call("/schedule-connections/actions/read", input);
4949
+ }
4904
4950
  captureSerpSnapshot(input) {
4905
4951
  return this.call("/serp-intelligence/capture", input, this.serpIntelligenceTimeoutMs);
4906
4952
  }
@@ -8854,4 +8900,4 @@ export {
8854
8900
  registerMemoryMcpTools,
8855
8901
  MemoryMcpToolExecutor
8856
8902
  };
8857
- //# sourceMappingURL=chunk-FZG427QD.js.map
8903
+ //# sourceMappingURL=chunk-IRYBBEZJ.js.map