scrapeloop-mcp 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.
- package/package.json +1 -1
- package/src/index.js +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scrapeloop-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.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
|
@@ -1184,6 +1184,8 @@ const TOOLS = {
|
|
|
1184
1184
|
operation_id: { ...S, format: 'uuid' }, name: S, market: S,
|
|
1185
1185
|
niche_gcids: ARR(S), mode: { ...S, enum: ['auto', 'simple', 'advanced'] },
|
|
1186
1186
|
channels: ARR({ ...S, enum: ['email', 'sms', 'linkedin'] }),
|
|
1187
|
+
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.' },
|
|
1188
|
+
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
1189
|
checks: { ...O, description: 'Overrides for saved checks, using the Playbook checks keys.' },
|
|
1188
1190
|
stage_mode: { ...S, enum: ['move', 'copy'] }, carry_values: B,
|
|
1189
1191
|
raw_setup: { ...O, description: 'Optional Raw columns, packs and layout. Same shape as create_table table_setup.' },
|
|
@@ -2946,7 +2948,7 @@ async function serve() {
|
|
|
2946
2948
|
}
|
|
2947
2949
|
|
|
2948
2950
|
const server = new Server(
|
|
2949
|
-
{ name: 'scrapeloop-mcp', version: '0.
|
|
2951
|
+
{ name: 'scrapeloop-mcp', version: '0.10.0' },
|
|
2950
2952
|
{ capabilities: { tools: {} } }
|
|
2951
2953
|
);
|
|
2952
2954
|
|