company-dossier 0.3.0 → 0.3.2
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/mcp-http.js +6 -1
- package/dist/mcp-server.js +6 -1
- package/dist/mcp.js +6 -1
- package/dist/web.js +1542 -0
- package/package.json +3 -2
package/dist/mcp-http.js
CHANGED
|
@@ -1415,7 +1415,12 @@ function registerTools(server) {
|
|
|
1415
1415
|
"build_dossier",
|
|
1416
1416
|
{
|
|
1417
1417
|
title: "Build Company Dossier",
|
|
1418
|
-
description: "
|
|
1418
|
+
description: "Use this when the user asks for research, a background check, due diligence, a profile, or a 'dossier' on a specific company or domain. Returns a nine-section, source-cited report (overview, people, hiring, funding, locations, tech stack, news, relationships, risk flags) compiled from public sources, each claim confidence-tagged. No API keys required. Do not use for general web search, for private individuals who are not company representatives, or for non-business entities.",
|
|
1419
|
+
annotations: {
|
|
1420
|
+
readOnlyHint: true,
|
|
1421
|
+
openWorldHint: true,
|
|
1422
|
+
destructiveHint: false
|
|
1423
|
+
},
|
|
1419
1424
|
inputSchema: {
|
|
1420
1425
|
target: z.string().describe("A domain (acme.com) or company name to research."),
|
|
1421
1426
|
sections: z.array(z.enum(SECTIONS)).optional().describe(
|
package/dist/mcp-server.js
CHANGED
|
@@ -1407,7 +1407,12 @@ function registerTools(server) {
|
|
|
1407
1407
|
"build_dossier",
|
|
1408
1408
|
{
|
|
1409
1409
|
title: "Build Company Dossier",
|
|
1410
|
-
description: "
|
|
1410
|
+
description: "Use this when the user asks for research, a background check, due diligence, a profile, or a 'dossier' on a specific company or domain. Returns a nine-section, source-cited report (overview, people, hiring, funding, locations, tech stack, news, relationships, risk flags) compiled from public sources, each claim confidence-tagged. No API keys required. Do not use for general web search, for private individuals who are not company representatives, or for non-business entities.",
|
|
1411
|
+
annotations: {
|
|
1412
|
+
readOnlyHint: true,
|
|
1413
|
+
openWorldHint: true,
|
|
1414
|
+
destructiveHint: false
|
|
1415
|
+
},
|
|
1411
1416
|
inputSchema: {
|
|
1412
1417
|
target: z.string().describe("A domain (acme.com) or company name to research."),
|
|
1413
1418
|
sections: z.array(z.enum(SECTIONS)).optional().describe(
|
package/dist/mcp.js
CHANGED
|
@@ -1412,7 +1412,12 @@ function registerTools(server2) {
|
|
|
1412
1412
|
"build_dossier",
|
|
1413
1413
|
{
|
|
1414
1414
|
title: "Build Company Dossier",
|
|
1415
|
-
description: "
|
|
1415
|
+
description: "Use this when the user asks for research, a background check, due diligence, a profile, or a 'dossier' on a specific company or domain. Returns a nine-section, source-cited report (overview, people, hiring, funding, locations, tech stack, news, relationships, risk flags) compiled from public sources, each claim confidence-tagged. No API keys required. Do not use for general web search, for private individuals who are not company representatives, or for non-business entities.",
|
|
1416
|
+
annotations: {
|
|
1417
|
+
readOnlyHint: true,
|
|
1418
|
+
openWorldHint: true,
|
|
1419
|
+
destructiveHint: false
|
|
1420
|
+
},
|
|
1416
1421
|
inputSchema: {
|
|
1417
1422
|
target: z.string().describe("A domain (acme.com) or company name to research."),
|
|
1418
1423
|
sections: z.array(z.enum(SECTIONS)).optional().describe(
|