scrapeloop-mcp 0.9.0 → 0.11.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/package.json +1 -1
  2. package/src/index.js +7 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scrapeloop-mcp",
3
- "version": "0.9.0",
3
+ "version": "0.11.0",
4
4
  "description": "Scrapeloop MCP server - set up and run Scrapeloop end-to-end (integrations, scraping, lead database, verification, cleaners, enrichment, strategies, Instantly campaigns) from any MCP client (Claude Desktop, Cursor, ChatGPT, …).",
5
5
  "type": "module",
6
6
  "scripts": {
package/src/index.js CHANGED
@@ -961,6 +961,10 @@ const TOOLS = {
961
961
  def: { description: 'List campaigns with per-campaign stats and the bound list name.', inputSchema: obj({}) },
962
962
  run: () => api('GET', '/campaigns'),
963
963
  },
964
+ get_campaign_sending_metrics: {
965
+ def: { description: 'Read campaign membership, actual daily email activity, sequence steps, sending calendar and monthly full-sequence estimates. Counts shared Instantly mailbox capacity once and exposes stale or unknown reads. Other sender metrics may be unavailable. This never fills or starts campaigns, and the estimate does not change scrape goals or budgets.', inputSchema: obj({}) },
966
+ run: () => api('GET', '/campaigns/sending-metrics'),
967
+ },
964
968
  get_campaign_setup_options: {
965
969
  def: { description: 'Read this workspace\'s channel choices and defaults for new campaign drafts. Explicit create choices win. Reading options changes nothing and starts no campaign.', inputSchema: obj({}) },
966
970
  run: () => api('GET', '/campaigns/options'),
@@ -1184,6 +1188,8 @@ const TOOLS = {
1184
1188
  operation_id: { ...S, format: 'uuid' }, name: S, market: S,
1185
1189
  niche_gcids: ARR(S), mode: { ...S, enum: ['auto', 'simple', 'advanced'] },
1186
1190
  channels: ARR({ ...S, enum: ['email', 'sms', 'linkedin'] }),
1191
+ phone_check_timing: { ...S, enum: ['on_arrival', 'manual'], description: 'Manual queues phone checks without running them on arrival. SMS ready still requires a passing check.' },
1192
+ linkedin_check_timing: { ...S, enum: ['on_arrival', 'manual'], description: 'Manual creates Raw LinkedIn enrichment for profile review with paid lookup off. Review and move confirmed personal profiles to LinkedIn yourself.' },
1187
1193
  checks: { ...O, description: 'Overrides for saved checks, using the Playbook checks keys.' },
1188
1194
  stage_mode: { ...S, enum: ['move', 'copy'] }, carry_values: B,
1189
1195
  raw_setup: { ...O, description: 'Optional Raw columns, packs and layout. Same shape as create_table table_setup.' },
@@ -2946,7 +2952,7 @@ async function serve() {
2946
2952
  }
2947
2953
 
2948
2954
  const server = new Server(
2949
- { name: 'scrapeloop-mcp', version: '0.9.0' },
2955
+ { name: 'scrapeloop-mcp', version: '0.11.0' },
2950
2956
  { capabilities: { tools: {} } }
2951
2957
  );
2952
2958