mcp-scraper 0.3.0 → 0.3.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/dist/bin/api-server.cjs +1 -1
- package/dist/bin/api-server.cjs.map +1 -1
- package/dist/bin/api-server.js +1 -1
- package/dist/bin/browser-agent-stdio-server.cjs +3 -3
- package/dist/bin/browser-agent-stdio-server.cjs.map +1 -1
- package/dist/bin/browser-agent-stdio-server.js +2 -2
- 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-combined-stdio-server.cjs +3 -3
- package/dist/bin/mcp-scraper-combined-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-scraper-combined-stdio-server.js +3 -3
- 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 +1 -1
- package/dist/bin/mcp-stdio-server.cjs.map +1 -1
- package/dist/bin/mcp-stdio-server.js +2 -2
- package/dist/{chunk-SIXJ6EVS.js → chunk-55T4SRLJ.js} +2 -2
- package/dist/chunk-D4JDGKOV.js +7 -0
- package/dist/chunk-D4JDGKOV.js.map +1 -0
- package/dist/{chunk-DH4H3F6S.js → chunk-LICHCMV6.js} +4 -4
- package/dist/chunk-LICHCMV6.js.map +1 -0
- package/dist/{server-MOP7NIUK.js → server-AXPNL2RV.js} +3 -3
- package/docs/mcp-tool-manifest.generated.json +6 -5
- package/package.json +1 -1
- package/dist/chunk-DH4H3F6S.js.map +0 -1
- package/dist/chunk-PGWJ2EJ3.js +0 -7
- package/dist/chunk-PGWJ2EJ3.js.map +0 -1
- /package/dist/{chunk-SIXJ6EVS.js.map → chunk-55T4SRLJ.js.map} +0 -0
- /package/dist/{server-MOP7NIUK.js.map → server-AXPNL2RV.js.map} +0 -0
|
@@ -1673,7 +1673,7 @@ var LocalBrowserAgentService = class {
|
|
|
1673
1673
|
};
|
|
1674
1674
|
|
|
1675
1675
|
// src/version.ts
|
|
1676
|
-
var PACKAGE_VERSION = "0.3.
|
|
1676
|
+
var PACKAGE_VERSION = "0.3.1";
|
|
1677
1677
|
|
|
1678
1678
|
// src/mcp/browser-agent-tool-schemas.ts
|
|
1679
1679
|
var import_zod = require("zod");
|
|
@@ -3140,10 +3140,10 @@ function registerBrowserAgentMcpTools(server2, opts) {
|
|
|
3140
3140
|
"browser_capture_fanout",
|
|
3141
3141
|
{
|
|
3142
3142
|
title: "Capture AI Search Fan-Out",
|
|
3143
|
-
description:
|
|
3143
|
+
description: `Capture the query fan-out behind a ChatGPT or Claude web-search answer for Answer Engine Optimization (AEO): the exact sub-queries the model issued, every researched URL split into cited vs browsed-only (with citation frequency and snippet), each source tagged by category (First-party/vendor, News/media, Reddit, Social/video, Encyclopedia, Review site, Docs, Blog), plus top sourced sites and citation order. This returns the raw structured data; YOU analyze it \u2014 classify each sub-query by funnel stage (Problem-aware, Solution-aware, Decision-aware, Retention) and type (BoFu, Branded, Comparison, How-to, Search operator), name the brands the model researched, and give AEO insights. Sample asks: "capture the fan-out for this ChatGPT answer", "what did Claude search and cite for best CRM", "show the sub-queries and sources behind this AI answer". WRITE NOTE: passing prompt submits a real message in the user's logged-in account (a new conversation turn) \u2014 only send when the user wants that; omit prompt to capture a prompt the user just ran. Setup, if not already done: import a logged-in session with browser_profile_import (local Chrome) or browser_profile_onboard (hosted Kernel), then browser_open and browser_goto to chatgpt.com or claude.ai. Fan-out is captured only as it streams, so the session must be open when the prompt runs. NOT for Google AI Overview citations \u2014 use harvest_paa for those; this tool is ChatGPT and Claude only.`,
|
|
3144
3144
|
inputSchema: BrowserCaptureFanoutInputSchema,
|
|
3145
3145
|
outputSchema: BrowserCaptureFanoutOutputSchema,
|
|
3146
|
-
annotations: annotations("Capture AI Search Fan-Out"
|
|
3146
|
+
annotations: annotations("Capture AI Search Fan-Out")
|
|
3147
3147
|
},
|
|
3148
3148
|
async (input) => {
|
|
3149
3149
|
const emit = (result, exports2) => structuredResult({
|