
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
folderinfo-mcp
Advanced tools
Ultra-simple MCP server for folder exploration (tree, ls, recursive-ls, folder-info)
Ultra-simple MCP server for folder exploration.
| Name | Type | Description |
|---|---|---|
| dir | string | Target directory (default cwd) |
| filetype | string[] | Extensions (without dot) to include |
| excludedFolders | string[] | Regex or glob patterns to exclude folders |
| excludedFiles | string[] | Regex or glob patterns to exclude files |
Add to config:
{
"mcpServers": {
"folderinfo": {
"command": "node",
"args": ["/ABSOLUTE/PATH/folderinfo-mcp/dist/index.js"]
}
}
}
Dev:
pnpm install
pnpm run dev
Build & Run:
pnpm run build
pnpm start
Test Tools:
pnpm test
## Global CLI Install / Wrapper
The published binary uses a small ESM wrapper (`bin/folderinfo-mcp.mjs`) with a shebang. This avoids losing the shebang when rebuilding `dist/`.
Install globally (development link):
```bash
pnpm build
pnpm link --global
folderinfo-mcp # should print: folderinfo-mcp server running
Or via npm after publish:
npm install -g folderinfo-mcp
folderinfo-mcp
If you prefer to reference directly in a Claude config without global install:
{
"mcpServers": {
"folderinfo": {
"command": "node",
"args": ["/absolute/path/folderinfo-mcp/dist/index.js"]
}
}
}
Because TypeScript outputs ESM files without a shebang, executing dist/index.js directly as a binary (from the package bin field) would fail or silently do nothing on some shells. The wrapper adds:
#!/usr/bin/env node)dist/index.js| Issue | Cause | Fix |
|---|---|---|
Running folderinfo-mcp does nothing | Old global link cached | Re-run pnpm link --global after build |
| Permission denied | Missing execute bit | chmod +x bin/folderinfo-mcp.mjs |
| Not updated after edits | Forgot to rebuild | pnpm build then re-link |
FAQs
Ultra-simple MCP server for folder exploration (tree, ls, recursive-ls, folder-info)
We found that folderinfo-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.