We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yamadashy/repomix'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
This release improves binary file detection, encoding detection, and comment removal reliability, making Repomix more robust when processing diverse codebases!
## Bug Fixes 🐛
### Fixed Comment Removal Hanging Issue (#975, #1009)
Replaced `strip-comments` with `@repomix/strip-comments`, a fork with enhanced language support and bug fixes.
Resolves the hanging issue when processing large files with `removeComments: true`
### Fixed Encoding Detection Issues (#869, #1007)
Removed the jschardet confidence check that was incorrectly skipping valid files.
- **Fixes #869** - Valid Python files no longer skipped with low confidence scores
- **Fixes #847** - HTML files with Thymeleaf syntax (`~{`) no longer incorrectly detected as binary
## Improvements ⚡
### Enhanced Binary File Detection (#1006)
Replaced `istextorbinary` with actively maintained alternatives:
- `is-binary-path`: Extension-based detection (47M weekly downloads)
- `isbinaryfile`: Content-based detection with zero dependencies
This ~20x improvement in binary extension coverage reduces unnecessary content checks for common binary formats.
## How to Update
```bash
npm update -g repomix
```
---
As always, if you have any issues or suggestions, please let us know on GitHub issues or our [Discord community](https://discord.gg/wNYzTwZFku).