mcp-scraper 0.57.2 → 0.57.3
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/CHANGELOG.md +8 -0
- package/README.md +1 -1
- package/dist/bin/api-server.cjs +16 -4
- package/dist/bin/api-server.cjs.map +1 -1
- package/dist/bin/api-server.js +1 -1
- package/dist/bin/mcp-scraper-cli.cjs +1 -1
- package/dist/bin/mcp-scraper-cli.cjs.map +1 -1
- package/dist/bin/mcp-scraper-cli.js +1 -1
- package/dist/bin/mcp-scraper-install.cjs +1 -1
- package/dist/bin/mcp-scraper-install.cjs.map +1 -1
- package/dist/bin/mcp-scraper-install.js +1 -1
- package/dist/bin/mcp-stdio-server.cjs +3 -3
- package/dist/bin/mcp-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-stdio-server.js +2 -2
- package/dist/chunk-LHH3GX3W.js +7 -0
- package/dist/chunk-LHH3GX3W.js.map +1 -0
- package/dist/{chunk-67JUTUQD.js → chunk-QSUSTYB3.js} +4 -4
- package/dist/chunk-QSUSTYB3.js.map +1 -0
- package/dist/{server-OZJXK7AB.js → server-EP2SK2ID.js} +16 -4
- package/dist/server-EP2SK2ID.js.map +1 -0
- package/package.json +1 -1
- package/dist/chunk-67JUTUQD.js.map +0 -1
- package/dist/chunk-QN4W5SX6.js +0 -7
- package/dist/chunk-QN4W5SX6.js.map +0 -1
- package/dist/server-OZJXK7AB.js.map +0 -1
|
@@ -13,7 +13,7 @@ import {
|
|
|
13
13
|
registerScheduledResultsMcpTools,
|
|
14
14
|
registerSerpIntelligenceCaptureTools,
|
|
15
15
|
resolveDeploymentProfile
|
|
16
|
-
} from "../chunk-
|
|
16
|
+
} from "../chunk-QSUSTYB3.js";
|
|
17
17
|
import "../chunk-2K74LVV7.js";
|
|
18
18
|
import "../chunk-4PNMJUSG.js";
|
|
19
19
|
import "../chunk-AK2NNIYA.js";
|
|
@@ -22,7 +22,7 @@ import {
|
|
|
22
22
|
} from "../chunk-HU4R6BP2.js";
|
|
23
23
|
import {
|
|
24
24
|
PACKAGE_VERSION
|
|
25
|
-
} from "../chunk-
|
|
25
|
+
} from "../chunk-LHH3GX3W.js";
|
|
26
26
|
import "../chunk-R6CO77BN.js";
|
|
27
27
|
import "../chunk-NDIAJIKQ.js";
|
|
28
28
|
import "../chunk-KSAXVGKC.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/version.ts"],"sourcesContent":["export const PACKAGE_VERSION = '0.57.3'\n"],"mappings":";AAAO,IAAM,kBAAkB;","names":[]}
|
|
@@ -21,7 +21,7 @@ import {
|
|
|
21
21
|
} from "./chunk-AK2NNIYA.js";
|
|
22
22
|
import {
|
|
23
23
|
PACKAGE_VERSION
|
|
24
|
-
} from "./chunk-
|
|
24
|
+
} from "./chunk-LHH3GX3W.js";
|
|
25
25
|
import {
|
|
26
26
|
MC_PER_CREDIT,
|
|
27
27
|
PAA_BASE_CREDITS,
|
|
@@ -10019,14 +10019,14 @@ function registerPaaExtractorMcpTools(server, executor, options = {}) {
|
|
|
10019
10019
|
}, async (input) => executor.localSourcebookCapture(input));
|
|
10020
10020
|
server.registerTool("local_sourcebook_submission_status", {
|
|
10021
10021
|
title: "Local Sourcebook Submission Status",
|
|
10022
|
-
description: "Read the authenticated caller\u2019s listing draft, enrichment coverage, immutable revision number, publication state, and exact live LocalSourcebook.com profile and reviews URLs.",
|
|
10022
|
+
description: "Read the authenticated caller\u2019s listing draft, enrichment coverage, immutable revision number, publication state, and exact live LocalSourcebook.com profile and reviews URLs. When status is failed, acquisitionError states why in plain language \u2014 read it before retrying, because a refresh repeats the same acquisition and will fail the same way until the cause is fixed. Coverage counters are written only when acquisition succeeds, so a failed listing still shows the pre-run crawl block; zeroed counters do not mean the crawl never ran.",
|
|
10023
10023
|
inputSchema: LocalSourcebookSubmissionStatusInputSchema,
|
|
10024
10024
|
outputSchema: recordOutputSchema("local_sourcebook_submission_status", LocalSourcebookOutputSchema),
|
|
10025
10025
|
annotations: localPlanningToolAnnotations("Local Sourcebook Submission Status")
|
|
10026
10026
|
}, async (input) => executor.localSourcebookSubmissionStatus(input));
|
|
10027
10027
|
server.registerTool("local_sourcebook_refresh", {
|
|
10028
10028
|
title: "Refresh a Local Sourcebook Listing",
|
|
10029
|
-
description: "Queue a new broad crawl and review/media acquisition pass for a listing owned by the authenticated MCP Scraper account. A refresh costs 2 Credits total, including acquisition; idempotent retries are not charged twice. The last published revision remains public until the refreshed evidence revision completes and auto-publishes.",
|
|
10029
|
+
description: "Queue a new broad crawl and review/media acquisition pass for a listing owned by the authenticated MCP Scraper account. A refresh costs 2 Credits total, including acquisition; idempotent retries are not charged twice, and a replayed retry still re-runs the acquisition, so a failed listing is always recoverable. Read local_sourcebook_submission_status first: a refresh repeats the same acquisition, so fix whatever acquisitionError reports before spending another pass. The last published revision remains public until the refreshed evidence revision completes and auto-publishes.",
|
|
10030
10030
|
inputSchema: LocalSourcebookRefreshInputSchema,
|
|
10031
10031
|
outputSchema: recordOutputSchema("local_sourcebook_refresh", LocalSourcebookOutputSchema),
|
|
10032
10032
|
annotations: liveWebToolAnnotations("Refresh a Local Sourcebook Listing")
|
|
@@ -15972,4 +15972,4 @@ export {
|
|
|
15972
15972
|
ScheduledResultsMcpExecutor,
|
|
15973
15973
|
registerScheduledResultsMcpTools
|
|
15974
15974
|
};
|
|
15975
|
-
//# sourceMappingURL=chunk-
|
|
15975
|
+
//# sourceMappingURL=chunk-QSUSTYB3.js.map
|