mcp-scraper 0.78.0 → 0.79.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/CHANGELOG.md +38 -8
- package/README.md +2 -3
- package/dist/{analytics-repository-D5LEGQG3.js → analytics-repository-VEUDEPWI.js} +2 -2
- package/dist/bin/api-server.js +6 -5
- package/dist/bin/mcp-scraper-cli.js +1 -1
- package/dist/bin/mcp-scraper-core.js +5 -5
- package/dist/bin/mcp-scraper-install.js +2 -2
- package/dist/bin/mcp-stdio-server.js +5 -5
- package/dist/{chunk-2P2ZVRPK.js → chunk-2JF4ECSJ.js} +717 -32
- package/dist/{chunk-ZUCU2A6V.js → chunk-ATIVTEML.js} +1 -1
- package/dist/{chunk-74CCAY6T.js → chunk-DUWZQSSJ.js} +1 -1
- package/dist/{chunk-3PUMNEOC.js → chunk-LB2GNACG.js} +2 -2
- package/dist/{chunk-FODYEDZK.js → chunk-Q54QVYJ2.js} +3 -3
- package/dist/{chunk-FUMG43EN.js → chunk-Q5L2OCOQ.js} +1 -1
- package/dist/{chunk-IYYRSVRQ.js → chunk-R4YRH5PG.js} +1 -1
- package/dist/{chunk-VMWSXKUQ.js → chunk-SL7YVA4S.js} +1 -1
- package/dist/{chunk-6W4ADSWE.js → chunk-VFCUGTCF.js} +2 -2
- package/dist/{extract-bundle-P2DTUVY3.js → extract-bundle-I2GNC25L.js} +2 -2
- package/dist/{gmail-service-HN57R2GS.js → gmail-service-GGQVJUC3.js} +3 -3
- package/dist/{server-6B2OG3NN.js → server-QJUBOH6L.js} +19528 -4746
- package/dist/{site-extract-repository-XKSVXSSY.js → site-extract-repository-KF736IR6.js} +2 -2
- package/dist/{worker-2BYACLNF.js → worker-VU6JCCLG.js} +1 -1
- package/package.json +12 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getSessionSecret,
|
|
3
3
|
serviceConnectionAdvertisesAction
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-Q5L2OCOQ.js";
|
|
5
5
|
|
|
6
6
|
// src/api/analytics-repository.ts
|
|
7
7
|
import { createHash as createHash2, createHmac as createHmac2, randomBytes as randomBytes2, randomUUID as randomUUID2 } from "crypto";
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
recordServiceConnectionHealth,
|
|
6
6
|
setServiceConnectionProviderIdentity,
|
|
7
7
|
updateServiceConnectionTools
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-Q5L2OCOQ.js";
|
|
9
9
|
import {
|
|
10
10
|
createConnectedDataArtifact,
|
|
11
11
|
createConnectedDataBinaryArtifact
|
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
LedgerOperation,
|
|
20
20
|
MC_PER_CREDIT,
|
|
21
21
|
calculateConnectedUsageCharge
|
|
22
|
-
} from "./chunk-
|
|
22
|
+
} from "./chunk-VFCUGTCF.js";
|
|
23
23
|
import {
|
|
24
24
|
recordVendorUsage,
|
|
25
25
|
runWithCostContext
|
|
@@ -12,13 +12,13 @@ import {
|
|
|
12
12
|
registerScheduledResultsMcpTools,
|
|
13
13
|
registerSerpIntelligenceCaptureTools,
|
|
14
14
|
resolveDeploymentProfile
|
|
15
|
-
} from "./chunk-
|
|
15
|
+
} from "./chunk-2JF4ECSJ.js";
|
|
16
16
|
import {
|
|
17
17
|
renderInstallTerminal
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-R4YRH5PG.js";
|
|
19
19
|
import {
|
|
20
20
|
PACKAGE_VERSION
|
|
21
|
-
} from "./chunk-
|
|
21
|
+
} from "./chunk-ATIVTEML.js";
|
|
22
22
|
|
|
23
23
|
// src/mcp/stdio-runtime.ts
|
|
24
24
|
import { readFileSync } from "fs";
|
|
@@ -167,7 +167,7 @@ function rowToRecord(row) {
|
|
|
167
167
|
userId: Number(row.user_id),
|
|
168
168
|
providerConfigKey: String(row.provider_config_key),
|
|
169
169
|
provider: typeof row.provider === "string" ? row.provider : null,
|
|
170
|
-
transport: row.transport === "remote_mcp" ? "remote_mcp" : "nango",
|
|
170
|
+
transport: row.transport === "remote_mcp" ? "remote_mcp" : row.transport === "credential_reference" ? "credential_reference" : "nango",
|
|
171
171
|
upstreamConnectionId: typeof row.upstream_connection_id === "string" ? row.upstream_connection_id : null,
|
|
172
172
|
label: typeof row.label === "string" ? row.label : null,
|
|
173
173
|
userLabel: typeof row.user_label === "string" ? row.user_label : null,
|
|
@@ -55,7 +55,7 @@ function renderInstallTerminal(options) {
|
|
|
55
55
|
"1/1 install surfaces ready",
|
|
56
56
|
colorize(`Newest in v${options.version}: ${release_message_default.message}`, "lime", color),
|
|
57
57
|
"",
|
|
58
|
-
`${colorize("Tools", "cyan", color)} ${colorize("(
|
|
58
|
+
`${colorize("Tools", "cyan", color)} ${colorize("(354 MCP tools)", "muted", color)}`,
|
|
59
59
|
toolRow("search", ["harvest_paa", "search_serp", "maps_search", "maps_place_intel"], color),
|
|
60
60
|
toolRow("extract", ["extract_url", "map_site_urls", "extract_site", "audit_site", "directory_workflow"], color),
|
|
61
61
|
toolRow("build", ["create_editorial_reading_room", "rank_tracker_workflow", "portable HTML"], color),
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
createSiteExtractContentReader,
|
|
11
11
|
createSiteExtractImageArtifact,
|
|
12
12
|
extractJobLimitInfo
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-SL7YVA4S.js";
|
|
14
14
|
import "./chunk-OZJMVCDK.js";
|
|
15
15
|
import {
|
|
16
16
|
computeIssues,
|
|
@@ -19,7 +19,7 @@ import {
|
|
|
19
19
|
renderLinkReport
|
|
20
20
|
} from "./chunk-PGJQDMC2.js";
|
|
21
21
|
import "./chunk-DNM65UCK.js";
|
|
22
|
-
import "./chunk-
|
|
22
|
+
import "./chunk-VFCUGTCF.js";
|
|
23
23
|
import "./chunk-GGZEC22A.js";
|
|
24
24
|
import {
|
|
25
25
|
getDb
|
|
@@ -7,10 +7,10 @@ import {
|
|
|
7
7
|
GmailServiceError,
|
|
8
8
|
normalizeGmailMessage,
|
|
9
9
|
parseGmailAddresses
|
|
10
|
-
} from "./chunk-
|
|
11
|
-
import "./chunk-
|
|
10
|
+
} from "./chunk-LB2GNACG.js";
|
|
11
|
+
import "./chunk-Q5L2OCOQ.js";
|
|
12
12
|
import "./chunk-T3MZISOF.js";
|
|
13
|
-
import "./chunk-
|
|
13
|
+
import "./chunk-VFCUGTCF.js";
|
|
14
14
|
import "./chunk-NGLZ6UJR.js";
|
|
15
15
|
import "./chunk-OU4FV2RP.js";
|
|
16
16
|
export {
|