Skip to content

v0.2.36

Compare
Choose a tag to compare
@yamadashy yamadashy released this 09 Mar 15:11
· 308 commits to main since this release

This release adds MCP server support, improves ignore pattern handling on the website, and includes dependency updates.

What's New 🚀

MCP Server Support (#399)

  • Added initial implementation of the Model Context Protocol (MCP) server
    • Allows AI assistants to directly interact with your codebase without manual file preparation
    • Provides two powerful tools:
      • pack_codebase: Package local code directories for AI analysis
      • pack_remote_repository: Fetch, clone and package GitHub repositories

We've also submitted Repomix to the MCP marketplace:

To use Repomix as an MCP server with Cline (VS Code extension), edit the cline_mcp_settings.json file:

{
  "mcpServers": {
    "repomix": {
      "command": "npx",
      "args": [
        "-y",
        "repomix",
        "--mcp"
      ]
    }
  }
}
image

For more details, please refer to the documentation:
https://github.com/yamadashy/repomix#mcp-integration

Improvements ⚡️

Enhanced Ignore Pattern Support (#396)

  • Now allows special characters like ! ( ) in ignore patterns via the website

Known Issue: There's currently an issue where negation patterns (!) don't work correctly. See Issue #400 for details.

Thank you @eastlondoner for your first contribution to the project!

How to Update

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.