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 enhances header configuration control, adds JSON Schema validation, and improves Docker integration for the MCP server with comprehensive documentation updates.
## Improvements ⚡
### Enhanced `--no-file-summary` Option (#556)
- `--no-file-summary` now also suppresses the generation header
- Header text (`headerText`) is still displayed, maintaining custom messages
- Users can now control headers more flexibly and intuitively, showing custom headers while hiding Repomix-generated content
Special thanks to @joshwand for this significant improvement!
### JSON Schema Configuration Validation (#570)
- Added JSON schema for `repomix.config.json` validation
- Enables auto-completion and validation in supported editors
- Improves developer experience in VSCode and other editors with JSON schema support
```json
{
"$schema": "https://repomix.com/schemas/latest/schema.json",
"output": {
"filePath": "repomix-output.md",
"style": "markdown"
}
}
```
## Documentation 📚
### Docker Configuration for MCP Server (#559)
- Added Docker container support for running Repomix as an MCP server
```json
{
"mcpServers": {
"repomix-docker": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/yamadashy/repomix",
"--mcp"
]
}
}
}
```
## How to Update
```bash
npm update -g repomix
```
---
As always, if you encounter any issues or have suggestions, please let us know through our GitHub issues or join our [Discord community](https://discord.gg/wNYzTwZFku) for support.