{
"mcpServers": {
"mcp-server-repomix": {
"args": [
"-y",
"repomix"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No known CVEs for repomix.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 127 days ago. 2 stars. 51,653 weekly downloads.
Will it work with my client?
Transport: http. Compatibility not confirmed.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'repomix' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Mcp Server Repomix and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Zed extension that integrates Repomix as a Model Context Protocol (MCP) server, enabling AI assistants to pack and analyze entire codebases.
Repomix is a powerful tool that packs your entire repository into a single file optimized for AI consumption. It's particularly useful for:
Before using this extension, you need to have:
npm install -g repomix
Cmd+Shift+P (macOS) or Ctrl+Shift+P (Linux/Windows)Clone this repository:
git clone https://github.com/mlopezgez/zed-mcp-server-repomix.git
cd zed-mcp-server-repomix
Build the extension:
cargo build --release
Install in Zed:
# Copy to Zed extensions directory
mkdir -p ~/.config/zed/extensions
cp -r . ~/.config/zed/extensions/mcp-server-repomix
Add the following to your Zed settings (~/.config/zed/settings.json):
{
"context_servers": {
"mcp-server-repomix": {}
}
}
If you have Repomix installed in a custom location:
{
"context_servers": {
"mcp-server-repomix": {
"settings": {
"repomix_path": "/custom/path/to/repomix"
}
}
}
}
Repomix can pack remote repositories by providing a repository URL. Simply pass the repository URL using either HTTPS (e.g., https://github.com/user/repo) or SSH (e.g., git@github.com:user/repo.git) to the pack repository tool.
Once installed and configured, the Repomix MCP server will be available in your Zed Assistant. The assistant can use Repomix tools to:
Try these prompts with your Zed Assistant:
The extension provides the following MCP tools to the Zed Assistant:
pack_repository: Pack a local or remote repositoryread_packed_output: Read and analyze packed repository outputsearch_packed_output: Search for specific patterns in packed output# Install Rust if you haven't already
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Clone and build
git clone https://github.com/mlopezgez/zed-mcp-server-repomix.git
cd zed-mcp-server-repomix
cargo build --release
zed-mcp-server-repomix/
├── src/
│ └── mcp_server_repomix.rs # Main ext
... [View full README on GitHub](https://github.com/mlopezgez/mcp-server-repomix#readme)