mcpscraper-sdk 0.7.0 → 0.9.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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -40,19 +40,19 @@ Every non-2xx response throws a `ScraperApiError` with `status`, `code`, and the
40
40
 
41
41
  ## API surface
42
42
 
43
- `client.tools` is the generated, typed 155-tool MCP surface. It includes every scraper, browser, workflow, artifact, billing, and memory tool from `contracts/mcp.tools.json`.
43
+ `client.tools` is the generated, typed 157-tool MCP surface. It includes 72 MCP Scraper tools and all 85 mirrored memory tools from `contracts/mcp.tools.json`.
44
44
 
45
45
  ```ts
46
46
  await client.tools.search.searchSerp({ query: 'roof repair Denver' })
47
47
  await client.tools.memory.search({ query: 'roofing warranty terms' })
48
48
  await client.tools.connections.exportConnectedServiceData({
49
49
  connectionId: 'conn_123',
50
- dataset: 'emails',
50
+ dataset: 'resend_data',
51
51
  lastDays: 7,
52
52
  })
53
53
  ```
54
54
 
55
- The connected-data export performs bounded provider pagination server-side and returns small results inline or a private seven-day JSONL artifact. Resume partial exports with the returned `continuation` object; renew an expired signed URL with `client.tools.connections.renewConnectedDataDownload({ artifactId })`.
55
+ The connected-data export performs bounded Gmail, Calendar, Zoom, or Resend pagination server-side and returns small results inline or a private seven-day JSONL artifact. Resend can aggregate sent/received mail, logs, contacts, broadcasts, and templates with `resend_data`. Resume partial exports with the returned `continuation` object; renew an expired signed URL with `client.tools.connections.renewConnectedDataDownload({ artifactId })`. Use `describeServiceConnectionTool` to obtain the exact input schema for a provider-native read or gated action before calling it through the generic connection bridges.
56
56
 
57
57
  Core operations are flat on the client: `searchSerp`, `harvestPaa`, `extractUrl`, `mapSiteUrls`, `extractSite`, `auditSite`, `getExtractSiteStatus`, `listJobs`, `getJob`, `getHistory`, `getLedger`.
58
58
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mcpscraper-sdk",
3
- "version": "0.7.0",
4
- "description": "Official Node.js client for all 155 mcpscraper.dev MCP tools and the REST API",
3
+ "version": "0.9.0",
4
+ "description": "Official Node.js client for all 157 mcpscraper.dev MCP tools and the REST API",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "main": "./dist/index.cjs",
@@ -31,7 +31,7 @@
31
31
  "seo-api"
32
32
  ],
33
33
  "dependencies": {
34
- "mcpscraper-memory-sdk": "^0.6.0"
34
+ "mcpscraper-memory-sdk": "^0.8.0"
35
35
  },
36
36
  "devDependencies": {
37
37
  "openapi-typescript": "^7.13.0"