mcp-scraper 0.14.0 → 0.15.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.
package/README.md CHANGED
@@ -176,14 +176,15 @@ env = { MCP_SCRAPER_API_KEY = "sk_live_your_key" }
176
176
 
177
177
  ### Connected-account tools
178
178
 
179
- - `list_service_connections` — list this caller's tenant-owned OAuth connections and the exact live read/action tools available on each account. Connections are never shared between customers.
180
- - `export_connected_service_data` — fetch a bounded Gmail, Google Calendar, or Zoom time range in one MCP call. The server handles provider pagination, Gmail hydration, normalization, and continuation. Small exports return inline; larger exports become private JSONL retained for seven days with a 15-minute signed URL. Attachments remain metadata-only and oversized individual bodies/transcripts are truncated with warnings.
179
+ - `list_service_connections` — list this caller's tenant-owned Nango OAuth and official remote MCP connections, including exact live reads, gated actions, permanently blocked administrative tools, and the credential transport. Connections are never shared between customers.
180
+ - `describe_service_connection_tool` — fetch the exact title, description, read/action classification, and JSON input schema for one tool listed on one tenant-owned connection. Use this before constructing provider-native arguments; it keeps Resend's broad official MCP surface usable without registering 85 additional top-level tools.
181
+ - `export_connected_service_data` — fetch a bounded Gmail, Google Calendar, Zoom, or Resend time range in one MCP call. Resend's aggregate `resend_data` export walks 12 practical safe collections: sent mail, received mail, logs, contacts, broadcasts, templates, domains, segments, topics, webhooks, contact imports, and contact properties. The six core collections are also individually selectable. The server handles provider pagination, bounded detail retrieval, normalization, per-category warnings, and signed continuation. Small exports return inline; larger exports become private JSONL retained for seven days with a 15-minute signed URL. Attachments remain metadata-only and oversized records are truncated with warnings.
181
182
  - `renew_connected_data_download` — issue a fresh 15-minute signed URL for an unexpired private export artifact without pulling the provider again.
182
- - `read_service_connection` — run one small live read by exact allowlisted name. Do not loop it over a time range; use `export_connected_service_data` for email, calendar, recording, or transcript collections.
183
- - `call_service_connection_action` — run one exact mutation only after the account action switch is enabled. GitHub, Gmail, Calendar, Slack, Zoom, Facebook, Google Analytics, X, and YouTube actions remain provider-policy and tenant gated.
183
+ - `read_service_connection` — run one small live read by exact allowlisted name across Nango OAuth or official remote MCP connections. Do not loop it over a time range; use `export_connected_service_data` for email, calendar, recording, transcript, or Resend collections.
184
+ - `call_service_connection_action` — run one exact mutation only after the account action switch is enabled. Resend, GitHub, Gmail, Calendar, Slack, Zoom, Facebook, Google Analytics, X, and YouTube actions remain provider-policy and tenant gated; credential, OAuth-grant, and raw editor-session administration is never exposed.
184
185
  - `set_scheduled_action_connections` — bind exact tenant connections and exact tool grants to one scheduled action. Deterministic connection syncs are model-free and one schedule occurrence counts as one metered event even when provider pagination spans many pages.
185
186
 
186
- GitHub uses the same provider-neutral read/action bridges: 27 reads cover repository discovery, issues, pull requests, commits, releases, and workflows; 20 mutations remain gated. Private-repository and workflow access requires reconnecting the OAuth account after the expanded scope set is deployed.
187
+ GitHub uses the same provider-neutral read/action bridges: 27 live reads cover repository discovery, issues, pull requests, commits, releases, and workflows; 20 live mutations remain account- and schedule-gated. The 47 Nango functions and expanded reconnect scopes are deployed. The current test token remains `public_repo` until owners approve its two pending organization requests, so private-repository and workflow parity is not yet claimed.
187
188
 
188
189
  ### Browser-agent tools
189
190
 
@@ -218,7 +219,7 @@ The `mcp-scraper` server (and the MCPB bundle, which runs it) exposes both secti
218
219
 
219
220
  All MCP tools expose output schemas and return `structuredContent` with the IDs, URLs, CSV paths, transcripts, browser session handles, replay paths, artifacts, recipe fields, or blueprint fields needed by the next step. Browser Agent tools keep a JSON text block for older clients, but structured data is the primary contract. All tools carry MCP annotations; file-writing tools such as replay downloads and annotations state their filesystem side effects.
220
221
 
221
- The canonical tool inventory is generated at `docs/mcp-tool-manifest.generated.json`. Both the `mcp-scraper` stdio server and the hosted endpoint at `https://mcpscraper.dev/mcp` expose the same 155 tools: 70 scraper, browser, workflow, billing, and connected-service tools plus 85 durable-memory tools. Release verification compares the exact local and remote tool-name sets, not only the count.
222
+ The canonical tool inventory is generated at `docs/mcp-tool-manifest.generated.json`. Both the `mcp-scraper` stdio server and the hosted endpoint at `https://mcpscraper.dev/mcp` expose the same 156 tools: 71 scraper, browser, workflow, billing, and connected-service tools plus 85 durable-memory tools. Release verification compares the exact local and remote tool-name sets, not only the count.
222
223
 
223
224
  ## Resources
224
225