This MCP server allows you to pack your codebase into AI-friendly formats, making it easier to analyze code with large language models. The server provides tools for AI assistants to interact directly with your code repositories.
You can run the MCP server directly without installation using npx:
npx repomix --mcp
For repeated use, install globally:
# Using npm
npm install -g repomix
# Using yarn
yarn global add repomix
# Using Homebrew (macOS/Linux)
brew install repomix
Configure your AI assistant to use Repomix as an MCP server:
Edit the cline_mcp_settings.json
file:
{
"mcpServers": {
"repomix": {
"command": "npx",
"args": [
"-y",
"repomix",
"--mcp"
]
}
}
}
Edit the claude_desktop_config.json
file with similar configuration.
The MCP server provides four main tools:
Packages a local directory into a consolidated file for AI analysis.
Parameters:
directory
: Absolute path to the directory to packcompress
: (Optional, default: true) Whether to perform intelligent code extractionincludePatterns
: (Optional) Comma-separated list of include patternsignorePatterns
: (Optional) Comma-separated list of ignore patternsFetches, clones and packages a GitHub repository.
Parameters:
remote
: GitHub repository URL or user/repo format (e.g., yamadashy/repomix)compress
: (Optional, default: true) Whether to perform intelligent code extractionincludePatterns
: (Optional) Comma-separated list of include patternsignorePatterns
: (Optional) Comma-separated list of ignore patternsReads a file using an absolute path with security validation.
Parameters:
path
: Absolute path to the file to readLists contents of a directory using an absolute path.
Parameters:
path
: Absolute path to the directory to listWhen running as a standalone tool (not as MCP server), various output formats are available:
repomix --style xml
repomix --style markdown
repomix --style plain
Create a configuration file for custom settings:
repomix --init
This generates a repomix.config.json
file with options for:
Repomix includes built-in security features:
These features help ensure that sensitive information isn't inadvertently shared when packaging code for AI analysis.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.