mcp-scraper 0.4.4 → 0.4.6
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/dist/bin/api-server.cjs +579 -40
- package/dist/bin/api-server.cjs.map +1 -1
- package/dist/bin/api-server.js +3 -3
- 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 +197 -3
- package/dist/bin/mcp-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-stdio-server.js +2 -2
- package/dist/bin/paa-harvest.cjs.map +1 -1
- package/dist/bin/paa-harvest.js +2 -2
- package/dist/chunk-5BB6Y3BB.js +7 -0
- package/dist/chunk-5BB6Y3BB.js.map +1 -0
- package/dist/{chunk-NJK5BTUK.js → chunk-5GAD2AN2.js} +2 -2
- package/dist/{chunk-FUVQR6GK.js → chunk-GL4BW4CP.js} +49 -1
- package/dist/chunk-GL4BW4CP.js.map +1 -0
- package/dist/{chunk-3UH3BEIZ.js → chunk-HE2LQPJ2.js} +2 -2
- package/dist/{chunk-Z34NGK64.js → chunk-IFXACD4K.js} +198 -4
- package/dist/chunk-IFXACD4K.js.map +1 -0
- package/dist/{chunk-5LO6EHEH.js → chunk-IVQYNY45.js} +14 -3
- package/dist/chunk-IVQYNY45.js.map +1 -0
- package/dist/{chunk-4ZZWFI6L.js → chunk-NYAWN7CZ.js} +3 -3
- package/dist/{db-H3S3M6KK.js → db-LIOTIWVN.js} +6 -2
- package/dist/{extract-bundle-UKE273TV.js → extract-bundle-COS56ZDO.js} +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/{server-IKT3QVFB.js → server-R3KVQNOT.js} +316 -35
- package/dist/server-R3KVQNOT.js.map +1 -0
- package/dist/{site-extract-repository-THBVEXMP.js → site-extract-repository-LI2S3S6E.js} +4 -4
- package/dist/{worker-YHKUJR5P.js → worker-VASAJ7FZ.js} +5 -5
- package/package.json +2 -1
- package/dist/chunk-5LO6EHEH.js.map +0 -1
- package/dist/chunk-FUVQR6GK.js.map +0 -1
- package/dist/chunk-TZRPP45I.js +0 -7
- package/dist/chunk-TZRPP45I.js.map +0 -1
- package/dist/chunk-Z34NGK64.js.map +0 -1
- package/dist/server-IKT3QVFB.js.map +0 -1
- /package/dist/{chunk-NJK5BTUK.js.map → chunk-5GAD2AN2.js.map} +0 -0
- /package/dist/{chunk-3UH3BEIZ.js.map → chunk-HE2LQPJ2.js.map} +0 -0
- /package/dist/{chunk-4ZZWFI6L.js.map → chunk-NYAWN7CZ.js.map} +0 -0
- /package/dist/{db-H3S3M6KK.js.map → db-LIOTIWVN.js.map} +0 -0
- /package/dist/{extract-bundle-UKE273TV.js.map → extract-bundle-COS56ZDO.js.map} +0 -0
- /package/dist/{site-extract-repository-THBVEXMP.js.map → site-extract-repository-LI2S3S6E.js.map} +0 -0
- /package/dist/{worker-YHKUJR5P.js.map → worker-VASAJ7FZ.js.map} +0 -0
|
@@ -17,7 +17,7 @@ import {
|
|
|
17
17
|
} from "./chunk-XGIPATLV.js";
|
|
18
18
|
import {
|
|
19
19
|
PACKAGE_VERSION
|
|
20
|
-
} from "./chunk-
|
|
20
|
+
} from "./chunk-5BB6Y3BB.js";
|
|
21
21
|
import {
|
|
22
22
|
sanitizeVendorName
|
|
23
23
|
} from "./chunk-M2S27J6Z.js";
|
|
@@ -1019,6 +1019,56 @@ ${headingSection}${kpoSection}${brandingSection}${bodySectionFull}${memSection}$
|
|
|
1019
1019
|
}
|
|
1020
1020
|
return { ...textResult, structuredContent };
|
|
1021
1021
|
}
|
|
1022
|
+
var DIFF_PAGE_PREVIEW_HUNKS = 20;
|
|
1023
|
+
function formatDiffPage(raw, input) {
|
|
1024
|
+
const parsed = parseData(raw);
|
|
1025
|
+
if ("error" in parsed) return { content: [{ type: "text", text: parsed.error }], isError: true };
|
|
1026
|
+
const d = parsed.data;
|
|
1027
|
+
const url = d.url ?? input.url;
|
|
1028
|
+
const title = d.title ?? "Untitled";
|
|
1029
|
+
const statusLine = d.status === "baseline" ? d.isReset ? "\u{1F195} **Baseline reset** \u2014 prior history discarded, this check is now the new baseline." : "\u{1F195} **Baseline captured** \u2014 first check for this URL, nothing to compare yet." : d.status === "unchanged" ? `\u2705 **No changes** since ${d.previousCheckedAt ?? "the last check"}.` : `\u{1F504} **Changed** since ${d.previousCheckedAt ?? "the last check"} \u2014 +${d.summary.linesAdded}/-${d.summary.linesRemoved} lines (${d.summary.percentChanged ?? 0}% of content).`;
|
|
1030
|
+
const previewHunks = d.hunks.slice(0, DIFF_PAGE_PREVIEW_HUNKS);
|
|
1031
|
+
const diffBlock = previewHunks.length ? [
|
|
1032
|
+
"\n## Diff",
|
|
1033
|
+
"```diff",
|
|
1034
|
+
...previewHunks.flatMap((h) => h.lines.map((l) => `${h.type === "added" ? "+" : "-"} ${l}`)),
|
|
1035
|
+
"```",
|
|
1036
|
+
previewHunks.length < d.hunks.length ? `*(showing ${previewHunks.length} of ${d.hunks.length} returned hunks)*` : ""
|
|
1037
|
+
].filter(Boolean).join("\n") : "";
|
|
1038
|
+
const truncationNotes = [
|
|
1039
|
+
d.contentTruncated ? "\n\u26A0\uFE0F Page content exceeded the storable cap and was truncated before hashing/diffing \u2014 changes past that point are not visible to this comparison." : "",
|
|
1040
|
+
d.hunksTruncatedReason ? `
|
|
1041
|
+
\u26A0\uFE0F ${d.hunksTruncatedReason}` : ""
|
|
1042
|
+
].filter(Boolean).join("\n");
|
|
1043
|
+
const tips = `
|
|
1044
|
+
---
|
|
1045
|
+
\u{1F4A1} **Tips**
|
|
1046
|
+
- Call \`diff_page\` again anytime to re-check \u2014 this tool is on-demand, not automatic.
|
|
1047
|
+
- Want the page's current content with nothing to compare? use \`extract_url\`.`;
|
|
1048
|
+
const full = `# Page Diff: ${url}
|
|
1049
|
+
**${title}**
|
|
1050
|
+
|
|
1051
|
+
${statusLine}${diffBlock}${truncationNotes}${tips}`;
|
|
1052
|
+
return {
|
|
1053
|
+
...oneBlock(full),
|
|
1054
|
+
structuredContent: {
|
|
1055
|
+
url,
|
|
1056
|
+
title: d.title,
|
|
1057
|
+
status: d.status,
|
|
1058
|
+
isReset: d.isReset,
|
|
1059
|
+
previousCheckedAt: d.previousCheckedAt,
|
|
1060
|
+
currentCheckedAt: d.currentCheckedAt,
|
|
1061
|
+
contentHash: d.contentHash,
|
|
1062
|
+
previousContentHash: d.previousContentHash,
|
|
1063
|
+
summary: d.summary,
|
|
1064
|
+
hunks: d.hunks,
|
|
1065
|
+
contentTruncated: d.contentTruncated,
|
|
1066
|
+
hunksTruncated: d.hunksTruncated,
|
|
1067
|
+
hunksTruncatedReason: d.hunksTruncatedReason,
|
|
1068
|
+
totalChangedLineCount: d.totalChangedLineCount
|
|
1069
|
+
}
|
|
1070
|
+
};
|
|
1071
|
+
}
|
|
1022
1072
|
async function formatMapSiteUrls(raw, input, ctx) {
|
|
1023
1073
|
const parsed = parseData(raw);
|
|
1024
1074
|
if ("error" in parsed) return { content: [{ type: "text", text: parsed.error }], isError: true };
|
|
@@ -2776,6 +2826,11 @@ var ExtractUrlInputSchema = {
|
|
|
2776
2826
|
depositToVault: z.boolean().default(false).describe("Save the full page content into the user's MCP Memory vault server-side, embedded for semantic recall \u2014 the full body is NOT returned to chat."),
|
|
2777
2827
|
vaultName: z.string().trim().min(1).max(120).optional().describe("Optional vault to deposit into. Defaults to the user's personal vault.")
|
|
2778
2828
|
};
|
|
2829
|
+
var DiffPageInputSchema = {
|
|
2830
|
+
url: z.string().url().describe("Public http/https URL to check for changes since the last diff_page call."),
|
|
2831
|
+
allowLocal: z.boolean().default(false).describe("Allow localhost and private-network URLs. Local development only."),
|
|
2832
|
+
resetBaseline: z.boolean().default(false).describe("Discard any previously stored snapshot for this URL and capture the current content as a fresh baseline instead of diffing against history. Use when you deliberately want to restart change tracking.")
|
|
2833
|
+
};
|
|
2779
2834
|
var MapSiteUrlsInputSchema = {
|
|
2780
2835
|
url: z.string().url().describe("Public website URL or domain to crawl for internal URLs. Use before extract_site when the user asks to audit/map/crawl a site."),
|
|
2781
2836
|
maxUrls: z.number().int().min(1).max(1e4).optional().describe("Maximum URLs to discover. Use 100 for normal maps, up to 10000 for a full inventory. Large maps (over 500 URLs) write the complete inventory to a local file and return only a summary plus the file path instead of the full list inline.")
|
|
@@ -3169,6 +3224,29 @@ var ExtractUrlOutputSchema = {
|
|
|
3169
3224
|
error: z.string().optional()
|
|
3170
3225
|
}).optional()
|
|
3171
3226
|
};
|
|
3227
|
+
var DiffPageOutputSchema = {
|
|
3228
|
+
url: z.string(),
|
|
3229
|
+
title: NullableString,
|
|
3230
|
+
status: z.enum(["baseline", "unchanged", "changed"]).describe('"baseline" = first-ever check for this URL, or resetBaseline was used \u2014 nothing to compare against. "unchanged" = content hash matched the stored snapshot. "changed" = a diff was computed.'),
|
|
3231
|
+
isReset: z.boolean().describe("True only when resetBaseline discarded a real prior snapshot \u2014 distinguishes an explicit reset from a URL's true first-ever check."),
|
|
3232
|
+
previousCheckedAt: NullableString.describe("ISO timestamp of the snapshot this was compared against, or null if there was none."),
|
|
3233
|
+
currentCheckedAt: z.string().describe("ISO timestamp of this check, now stored as the new snapshot."),
|
|
3234
|
+
contentHash: z.string().describe("sha256 of the full (untruncated) page content just captured."),
|
|
3235
|
+
previousContentHash: NullableString,
|
|
3236
|
+
summary: z.object({
|
|
3237
|
+
linesAdded: z.number().int().min(0),
|
|
3238
|
+
linesRemoved: z.number().int().min(0),
|
|
3239
|
+
percentChanged: z.number().min(0).max(100).nullable().describe('Proportion of changed lines relative to the larger of the two versions. Null when status is "baseline".')
|
|
3240
|
+
}),
|
|
3241
|
+
hunks: z.array(z.object({
|
|
3242
|
+
type: z.enum(["added", "removed"]).describe("Unchanged context lines are omitted \u2014 only added/removed lines are returned."),
|
|
3243
|
+
lines: z.array(z.string())
|
|
3244
|
+
})).describe("Ordered added/removed line hunks, capped for response size \u2014 see hunksTruncated."),
|
|
3245
|
+
contentTruncated: z.boolean().describe("True if the scraped page exceeded the 250,000-character storable cap and was truncated before hashing/diffing/storing \u2014 changes past that point are invisible to this comparison."),
|
|
3246
|
+
hunksTruncated: z.boolean().describe("True if the hunks list above was capped for response size \u2014 see hunksTruncatedReason."),
|
|
3247
|
+
hunksTruncatedReason: NullableString,
|
|
3248
|
+
totalChangedLineCount: z.number().int().min(0).describe("Total changed lines found before any hunksTruncated capping was applied.")
|
|
3249
|
+
};
|
|
3172
3250
|
var ExtractSiteOutputSchema = {
|
|
3173
3251
|
url: z.string(),
|
|
3174
3252
|
pageCount: z.number().int().min(0),
|
|
@@ -4173,6 +4251,13 @@ function registerPaaExtractorMcpTools(server, executor, options = {}) {
|
|
|
4173
4251
|
outputSchema: recordOutputSchema("extract_url", ExtractUrlOutputSchema),
|
|
4174
4252
|
annotations: liveWebToolAnnotations("Single URL Extract")
|
|
4175
4253
|
}, async (input) => formatExtractUrl(await executor.extractUrl(input), input));
|
|
4254
|
+
server.registerTool("diff_page", {
|
|
4255
|
+
title: "Page Change Check",
|
|
4256
|
+
description: "Check whether a public URL has changed since you last checked it with this tool: scrapes the current page, diffs it against your last stored snapshot for that URL, and returns what was added or removed (or confirms no change). Stores the new snapshot as the baseline for next time \u2014 on-demand only, no automatic recurring checks. Use extract_url instead when you just want the page's current content with nothing to compare against.",
|
|
4257
|
+
inputSchema: DiffPageInputSchema,
|
|
4258
|
+
outputSchema: recordOutputSchema("diff_page", DiffPageOutputSchema),
|
|
4259
|
+
annotations: liveWebToolAnnotations("Page Change Check")
|
|
4260
|
+
}, async (input) => formatDiffPage(await executor.diffPage(input), input));
|
|
4176
4261
|
server.registerTool("map_site_urls", {
|
|
4177
4262
|
title: "Site URL Map",
|
|
4178
4263
|
description: `Map/crawl a public website for a sitemap, URL inventory, or broken-link scan. Returns internal URLs with HTTP status; ${fileBehavior("maps over 500 URLs are written to a local CSV file instead of inlined.", "large results are stored as a retrievable artifact \u2014 you get an inline summary plus an artifactId for report_artifact_read.")}`,
|
|
@@ -4580,6 +4665,9 @@ var HttpMcpToolExecutor = class {
|
|
|
4580
4665
|
extractUrl(input) {
|
|
4581
4666
|
return this.call("/extract-url", input);
|
|
4582
4667
|
}
|
|
4668
|
+
diffPage(input) {
|
|
4669
|
+
return this.call("/diff-page", input);
|
|
4670
|
+
}
|
|
4583
4671
|
mapSiteUrls(input) {
|
|
4584
4672
|
return this.call("/map-urls", input);
|
|
4585
4673
|
}
|
|
@@ -4852,7 +4940,10 @@ var BrowserOpenInputSchema = {
|
|
|
4852
4940
|
url: z2.string().url().optional().describe("Optional URL to navigate to immediately after opening."),
|
|
4853
4941
|
profile: z2.string().optional().describe("Optional saved hosted profile name to load a logged-in session for a site."),
|
|
4854
4942
|
save_profile_changes: z2.boolean().optional().describe("Persist cookies/storage back to the named profile on close. Avoid parallel sessions writing to the same profile."),
|
|
4855
|
-
timeout_seconds: z2.number().int().min(60).max(259200).optional().describe("Session lifetime before auto-termination. Defaults to 600.")
|
|
4943
|
+
timeout_seconds: z2.number().int().min(60).max(259200).optional().describe("Session lifetime before auto-termination. Defaults to 600."),
|
|
4944
|
+
extension_names: z2.array(z2.string()).optional().describe(
|
|
4945
|
+
"Names of extensions previously added with browser_extension_import (see browser_extension_list for what's available) to load into this session. Loading extensions restarts the browser, adding a few seconds to startup."
|
|
4946
|
+
)
|
|
4856
4947
|
};
|
|
4857
4948
|
var BrowserProfileConnectInputSchema = {
|
|
4858
4949
|
email: z2.string().optional().describe("Account email for the login. Derives a stable profile name and is recorded as a note. Does NOT import existing cookies \u2014 the user signs in fresh."),
|
|
@@ -5079,6 +5170,43 @@ var BrowserProfileListOutputSchema = {
|
|
|
5079
5170
|
connections: z2.array(BrowserProfileLogin).describe("All site logins saved in this profile, each with its current auth status and note."),
|
|
5080
5171
|
count: z2.number().int().min(0)
|
|
5081
5172
|
};
|
|
5173
|
+
var BrowserExtensionImportInputSchema = {
|
|
5174
|
+
store_url: z2.string().url().describe("Chrome Web Store URL of the extension to add, e.g. https://chromewebstore.google.com/detail/<slug>/<id>."),
|
|
5175
|
+
name: z2.string().min(1).max(64).describe('Short name to save this extension under, e.g. "ani-ai". Reuse it later in extension_names on browser_open.')
|
|
5176
|
+
};
|
|
5177
|
+
var BrowserExtensionImportOutputSchema = {
|
|
5178
|
+
ok: z2.boolean(),
|
|
5179
|
+
tool: z2.literal("browser_extension_import"),
|
|
5180
|
+
session_id: z2.null(),
|
|
5181
|
+
name: z2.string().describe("The name this extension was saved under."),
|
|
5182
|
+
source_url: z2.string().describe("The store URL this extension was imported from."),
|
|
5183
|
+
size_bytes: z2.number().nullable().describe("Size of the extension package in bytes.")
|
|
5184
|
+
};
|
|
5185
|
+
var BrowserExtensionSummary = z2.object({
|
|
5186
|
+
name: z2.string(),
|
|
5187
|
+
source: z2.string().describe('Always "store" for extensions added via browser_extension_import.'),
|
|
5188
|
+
source_url: NullableString2,
|
|
5189
|
+
size_bytes: z2.number().nullable(),
|
|
5190
|
+
created_at: z2.string()
|
|
5191
|
+
});
|
|
5192
|
+
var BrowserExtensionListInputSchema = {};
|
|
5193
|
+
var BrowserExtensionListOutputSchema = {
|
|
5194
|
+
ok: z2.boolean(),
|
|
5195
|
+
tool: z2.literal("browser_extension_list"),
|
|
5196
|
+
session_id: z2.null(),
|
|
5197
|
+
extensions: z2.array(BrowserExtensionSummary).describe("Every extension available to load via extension_names on browser_open."),
|
|
5198
|
+
count: z2.number().int().min(0)
|
|
5199
|
+
};
|
|
5200
|
+
var BrowserExtensionDeleteInputSchema = {
|
|
5201
|
+
name: z2.string().min(1).describe("Name of the extension to remove, as returned by browser_extension_list.")
|
|
5202
|
+
};
|
|
5203
|
+
var BrowserExtensionDeleteOutputSchema = {
|
|
5204
|
+
ok: z2.boolean(),
|
|
5205
|
+
tool: z2.literal("browser_extension_delete"),
|
|
5206
|
+
session_id: z2.null(),
|
|
5207
|
+
name: z2.string(),
|
|
5208
|
+
deleted: z2.boolean()
|
|
5209
|
+
};
|
|
5082
5210
|
var BrowserScreenshotOutputSchema = {
|
|
5083
5211
|
...BrowserBaseOutput,
|
|
5084
5212
|
tool: z2.literal("browser_screenshot"),
|
|
@@ -5694,6 +5822,71 @@ function registerBrowserAgentMcpTools(server, opts) {
|
|
|
5694
5822
|
});
|
|
5695
5823
|
}
|
|
5696
5824
|
);
|
|
5825
|
+
server.registerTool(
|
|
5826
|
+
"browser_extension_import",
|
|
5827
|
+
{
|
|
5828
|
+
title: "Add Browser Extension",
|
|
5829
|
+
description: "Add a Chrome extension from its Chrome Web Store page so it can be loaded into browser_open sessions via extension_names. One-time setup per extension \u2014 check what's already added with browser_extension_list first. The extension starts logged out in any session; sign into it once inside a session, pairing with a saved profile (browser_open's profile + save_profile_changes) to keep it signed in on future opens.",
|
|
5830
|
+
inputSchema: BrowserExtensionImportInputSchema,
|
|
5831
|
+
outputSchema: recordOutputSchema("browser_extension_import", BrowserExtensionImportOutputSchema),
|
|
5832
|
+
annotations: annotations("Add Browser Extension")
|
|
5833
|
+
},
|
|
5834
|
+
async (input) => {
|
|
5835
|
+
const res = await req("POST", "/agent/extensions/import", { store_url: input.store_url, name: input.name });
|
|
5836
|
+
if (!res.ok) return errorResult("browser_extension_import", res.data);
|
|
5837
|
+
return structuredResult({
|
|
5838
|
+
ok: true,
|
|
5839
|
+
tool: "browser_extension_import",
|
|
5840
|
+
session_id: null,
|
|
5841
|
+
name: res.data.name,
|
|
5842
|
+
source_url: res.data.source_url,
|
|
5843
|
+
size_bytes: res.data.size_bytes ?? null
|
|
5844
|
+
});
|
|
5845
|
+
}
|
|
5846
|
+
);
|
|
5847
|
+
server.registerTool(
|
|
5848
|
+
"browser_extension_list",
|
|
5849
|
+
{
|
|
5850
|
+
title: "List Browser Extensions",
|
|
5851
|
+
description: "List extensions added via browser_extension_import, for use as extension_names on browser_open. Read-only, no cost.",
|
|
5852
|
+
inputSchema: BrowserExtensionListInputSchema,
|
|
5853
|
+
outputSchema: recordOutputSchema("browser_extension_list", BrowserExtensionListOutputSchema),
|
|
5854
|
+
annotations: annotations("List Browser Extensions", true)
|
|
5855
|
+
},
|
|
5856
|
+
async () => {
|
|
5857
|
+
const res = await req("GET", "/agent/extensions");
|
|
5858
|
+
if (!res.ok) return errorResult("browser_extension_list", res.data);
|
|
5859
|
+
const extensions = Array.isArray(res.data?.extensions) ? res.data.extensions : [];
|
|
5860
|
+
return structuredResult({
|
|
5861
|
+
ok: true,
|
|
5862
|
+
tool: "browser_extension_list",
|
|
5863
|
+
session_id: null,
|
|
5864
|
+
extensions,
|
|
5865
|
+
count: extensions.length
|
|
5866
|
+
});
|
|
5867
|
+
}
|
|
5868
|
+
);
|
|
5869
|
+
server.registerTool(
|
|
5870
|
+
"browser_extension_delete",
|
|
5871
|
+
{
|
|
5872
|
+
title: "Remove Browser Extension",
|
|
5873
|
+
description: "Remove a previously added extension by name so it can no longer be loaded via extension_names.",
|
|
5874
|
+
inputSchema: BrowserExtensionDeleteInputSchema,
|
|
5875
|
+
outputSchema: recordOutputSchema("browser_extension_delete", BrowserExtensionDeleteOutputSchema),
|
|
5876
|
+
annotations: { title: "Remove Browser Extension", readOnlyHint: false, destructiveHint: true, idempotentHint: true, openWorldHint: false }
|
|
5877
|
+
},
|
|
5878
|
+
async (input) => {
|
|
5879
|
+
const res = await req("DELETE", `/agent/extensions/${encodeURIComponent(input.name)}`);
|
|
5880
|
+
if (!res.ok) return errorResult("browser_extension_delete", res.data);
|
|
5881
|
+
return structuredResult({
|
|
5882
|
+
ok: true,
|
|
5883
|
+
tool: "browser_extension_delete",
|
|
5884
|
+
session_id: null,
|
|
5885
|
+
name: input.name,
|
|
5886
|
+
deleted: true
|
|
5887
|
+
});
|
|
5888
|
+
}
|
|
5889
|
+
);
|
|
5697
5890
|
server.registerTool(
|
|
5698
5891
|
"browser_open",
|
|
5699
5892
|
{
|
|
@@ -5712,7 +5905,8 @@ function registerBrowserAgentMcpTools(server, opts) {
|
|
|
5712
5905
|
...profile && typeof saveProfileChanges === "boolean" ? { save_profile_changes: saveProfileChanges } : {},
|
|
5713
5906
|
disable_default_proxy: true,
|
|
5714
5907
|
timeout_seconds: input.timeout_seconds,
|
|
5715
|
-
...input.url ? { url: input.url } : {}
|
|
5908
|
+
...input.url ? { url: input.url } : {},
|
|
5909
|
+
...input.extension_names?.length ? { extension_names: input.extension_names } : {}
|
|
5716
5910
|
});
|
|
5717
5911
|
if (!open.ok) return errorResult("browser_open", open.data);
|
|
5718
5912
|
const session = open.data;
|
|
@@ -8259,4 +8453,4 @@ export {
|
|
|
8259
8453
|
registerMemoryMcpTools,
|
|
8260
8454
|
MemoryMcpToolExecutor
|
|
8261
8455
|
};
|
|
8262
|
-
//# sourceMappingURL=chunk-
|
|
8456
|
+
//# sourceMappingURL=chunk-IFXACD4K.js.map
|