Summary
@tsed/cli-mcp@7.5.1 documents and declares a tsed-mcp binary, but the published npm package does not include the bin target files, so the command cannot be executed via npx or after install.
Reproduction
npx --yes --package @tsed/cli-mcp@7.5.1 tsed-mcp --help
Actual result:
sh: tsed-mcp: command not found
I also checked a clean install:
mkdir /tmp/tsed-cli-mcp-repro
cd /tmp/tsed-cli-mcp-repro
npm install --ignore-scripts --no-audit --no-fund @tsed/cli-mcp@7.5.1
ls node_modules/@tsed/cli-mcp/lib/esm/bin
Actual result:
ls: node_modules/@tsed/cli-mcp/lib/esm/bin: No such file or directory
What I expected
The command documented in packages/cli-mcp/readme.md should start the MCP CLI/server entrypoint:
What looks wrong
The published @tsed/cli-mcp package declares:
"bin": {
"tsed": "lib/esm/bin/tsed.js",
"tsed-mcp": "lib/esm/bin/tsed-mcp.js"
}
but the package tarball only contains the library files under lib/esm and lib/types; there is no lib/esm/bin/tsed.js or lib/esm/bin/tsed-mcp.js.
The repo source also appears to have no packages/cli-mcp/src/bin entrypoint to compile into those paths.
Environment
- Package:
@tsed/cli-mcp@7.5.1
- Node:
v26.0.0
- npm:
11.12.1
- OS: macOS
Summary
@tsed/cli-mcp@7.5.1documents and declares atsed-mcpbinary, but the published npm package does not include the bin target files, so the command cannot be executed vianpxor after install.Reproduction
Actual result:
I also checked a clean install:
mkdir /tmp/tsed-cli-mcp-repro cd /tmp/tsed-cli-mcp-repro npm install --ignore-scripts --no-audit --no-fund @tsed/cli-mcp@7.5.1 ls node_modules/@tsed/cli-mcp/lib/esm/binActual result:
What I expected
The command documented in
packages/cli-mcp/readme.mdshould start the MCP CLI/server entrypoint:What looks wrong
The published
@tsed/cli-mcppackage declares:but the package tarball only contains the library files under
lib/esmandlib/types; there is nolib/esm/bin/tsed.jsorlib/esm/bin/tsed-mcp.js.The repo source also appears to have no
packages/cli-mcp/src/binentrypoint to compile into those paths.Environment
@tsed/cli-mcp@7.5.1v26.0.011.12.1