scrapeloop-mcp 0.11.0 → 0.11.1
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 +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scrapeloop-mcp",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.1",
|
|
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
|
@@ -574,7 +574,7 @@ const TOOLS = {
|
|
|
574
574
|
run: () => api('GET', '/jobs'),
|
|
575
575
|
},
|
|
576
576
|
get_job: {
|
|
577
|
-
def: { description: 'Get one job with its execution steps (poll this for scrape progress). A scrape job carries `delivery`: how many rows were found, kept, new, already yours, and added to its Table, why rows were left out, and whether adding them to the Table worked.', inputSchema: obj({ job_id: S }, ['job_id']) },
|
|
577
|
+
def: { description: 'Get one job with its execution steps (poll this for scrape progress). A scrape job carries `delivery`: how many rows were found, kept, new, already yours, and added to its Table, why rows were left out, and whether adding them to the Table worked. New native Maps receipts also include search_coverage: complete, partial, or missing proof. Job completion alone never proves a whole place was covered.', inputSchema: obj({ job_id: S }, ['job_id']) },
|
|
578
578
|
run: (a) => api('GET', `/jobs/${enc(a.job_id)}`),
|
|
579
579
|
},
|
|
580
580
|
cancel_job: {
|
|
@@ -2952,7 +2952,7 @@ async function serve() {
|
|
|
2952
2952
|
}
|
|
2953
2953
|
|
|
2954
2954
|
const server = new Server(
|
|
2955
|
-
{ name: 'scrapeloop-mcp', version: '0.11.
|
|
2955
|
+
{ name: 'scrapeloop-mcp', version: '0.11.1' },
|
|
2956
2956
|
{ capabilities: { tools: {} } }
|
|
2957
2957
|
);
|
|
2958
2958
|
|