@thallylabs/mcp 0.10.34 → 0.10.36

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/README.md CHANGED
@@ -46,11 +46,11 @@ site over HTTP.
46
46
  imports content. To preserve an existing Thally runtime and import content in
47
47
  place, the caller must explicitly choose `import_docs`.
48
48
 
49
- Migration imports and static checks do not authorize source execution. Set
50
- `trustSource: true` only after the user explicitly approves local dependency
51
- installation and build execution of that source. Otherwise the production
52
- build is skipped and the migration report remains unverified. Imported MDX and
53
- components are executable code; static analysis is not a sandbox.
49
+ Migration automatically installs dependencies and validates the production
50
+ build, with no additional execution option or confirmation. This is a local
51
+ build workflow for sources the user owns or trusts: installation and builds
52
+ execute project code, including imported MDX and components, without sandboxing.
53
+ Failed checks are reported; skipped builds remain unverified.
54
54
 
55
55
  ## License
56
56
 
package/dist/index.js CHANGED
@@ -447,8 +447,7 @@ var migrationSourceShape = {
447
447
  docsDir: z7.string().optional().describe("Docs subdirectory in repo (default: auto-detect)"),
448
448
  apiKey: z7.string().optional().describe("Anthropic API key for non-Markdown file conversion"),
449
449
  maxPages: z7.number().int().min(1).max(1e3).optional().describe("Maximum public URL pages to import"),
450
- platform: z7.enum(["mintlify", "docusaurus"]).optional().describe("Source platform (default: auto-detect)"),
451
- trustSource: z7.boolean().optional().describe("Only set true after the user explicitly authorizes executing this source locally. Enables dependency installation and production build; imported MDX/components are executable code, not sandboxed data. Default false, even for unattended runs.")
450
+ platform: z7.enum(["mintlify", "docusaurus"]).optional().describe("Source platform (default: auto-detect)")
452
451
  };
453
452
  var migrateDocsSchema = z7.object({
454
453
  ...migrationSourceShape,
@@ -471,8 +470,7 @@ async function runMigration(input, isInPlaceImport) {
471
470
  docsDir: input.docsDir,
472
471
  maxPages: input.maxPages,
473
472
  platform: input.platform,
474
- yes: true,
475
- trustSource: input.trustSource === true
473
+ yes: true
476
474
  });
477
475
  }
478
476
  async function handleMigrateDocs(input) {
package/dist/tools.js CHANGED
@@ -438,8 +438,7 @@ var migrationSourceShape = {
438
438
  docsDir: z7.string().optional().describe("Docs subdirectory in repo (default: auto-detect)"),
439
439
  apiKey: z7.string().optional().describe("Anthropic API key for non-Markdown file conversion"),
440
440
  maxPages: z7.number().int().min(1).max(1e3).optional().describe("Maximum public URL pages to import"),
441
- platform: z7.enum(["mintlify", "docusaurus"]).optional().describe("Source platform (default: auto-detect)"),
442
- trustSource: z7.boolean().optional().describe("Only set true after the user explicitly authorizes executing this source locally. Enables dependency installation and production build; imported MDX/components are executable code, not sandboxed data. Default false, even for unattended runs.")
441
+ platform: z7.enum(["mintlify", "docusaurus"]).optional().describe("Source platform (default: auto-detect)")
443
442
  };
444
443
  var migrateDocsSchema = z7.object({
445
444
  ...migrationSourceShape,
@@ -462,8 +461,7 @@ async function runMigration(input, isInPlaceImport) {
462
461
  docsDir: input.docsDir,
463
462
  maxPages: input.maxPages,
464
463
  platform: input.platform,
465
- yes: true,
466
- trustSource: input.trustSource === true
464
+ yes: true
467
465
  });
468
466
  }
469
467
  async function handleMigrateDocs(input) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thallylabs/mcp",
3
- "version": "0.10.34",
3
+ "version": "0.10.36",
4
4
  "description": "MCP server for managing Thally docs and tracing product changes into evidence-backed updates for human review.",
5
5
  "type": "module",
6
6
  "engines": {
@@ -38,7 +38,7 @@
38
38
  "dependencies": {
39
39
  "@anthropic-ai/sdk": "^0.36.0",
40
40
  "@modelcontextprotocol/sdk": "^1.15.0",
41
- "create-thally-docs": "0.10.32",
41
+ "create-thally-docs": "0.10.34",
42
42
  "p-limit": "^6.1.0",
43
43
  "yaml": "^2.8.2",
44
44
  "zod": "^3.0.0"