typegraph-mcp 0.9.21 → 0.9.22

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
@@ -143,6 +143,7 @@ npx typegraph-mcp check
143
143
  | "TypeScript not found" | Add `typescript` to devDependencies |
144
144
  | Tools return empty results | Check `TYPEGRAPH_TSCONFIG` points to the right tsconfig |
145
145
  | Build errors from plugins/ | Add `"plugins/**"` to tsconfig.json `exclude` array |
146
+ | "npm warn Unknown project config" | Safe to ignore — caused by pnpm settings in your `.npmrc` that npm doesn't recognize |
146
147
 
147
148
  ## Manual MCP configuration
148
149
 
package/cli.ts CHANGED
@@ -808,6 +808,9 @@ const command = args.find((a) => !a.startsWith("-"));
808
808
  const yes = args.includes("--yes") || args.includes("-y");
809
809
  const help = args.includes("--help") || args.includes("-h");
810
810
 
811
+ // Clear npx download noise (warnings, "Ok to proceed?" prompt)
812
+ process.stdout.write("\x1Bc");
813
+
811
814
  if (help || !command) {
812
815
  console.log(HELP);
813
816
  process.exit(0);
package/dist/cli.js CHANGED
@@ -3373,6 +3373,7 @@ var args = process.argv.slice(2);
3373
3373
  var command = args.find((a) => !a.startsWith("-"));
3374
3374
  var yes = args.includes("--yes") || args.includes("-y");
3375
3375
  var help = args.includes("--help") || args.includes("-h");
3376
+ process.stdout.write("\x1Bc");
3376
3377
  if (help || !command) {
3377
3378
  console.log(HELP);
3378
3379
  process.exit(0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typegraph-mcp",
3
- "version": "0.9.21",
3
+ "version": "0.9.22",
4
4
  "description": "Type-aware codebase navigation for AI coding agents — 14 MCP tools powered by tsserver + oxc",
5
5
  "license": "MIT",
6
6
  "type": "module",