A unified MCP (Model Context Protocol) Server Manager for AI coding tools.
- Manage MCP servers across multiple AI tools from one place
- Supported tools: Claude Desktop, Claude Code, Roo, Cline, VS Code, GHCP, Cursor, Copilot CLI
- Add, edit, clone, and delete MCP server configurations
- Test servers to verify they're working
- Sync servers across all your tools with one click
- Import/Export configurations for backup and sharing
- Dark theme UI
# Clone the repository
git clone https://github.com/InbarR/OneMCP.git
cd OneMCP
# Install dependencies
npm install
# Run in development mode
npm run devDownload the appropriate package for your platform from the Releases page.
| File | Description |
|---|---|
OneMCP-1.0.0.Setup.exe |
Installer - Standard Windows installer using Squirrel. Installs to %LocalAppData%\OneMCP with auto-updates support. |
OneMCP-win32-x64-portable.zip |
Portable - Extract and run directly, no installation required. Good for USB drives or restricted environments. |
| File | Description |
|---|---|
OneMCP-darwin-x64.dmg |
Intel Macs - Disk image for Macs with Intel processors. Drag to Applications to install. |
OneMCP-darwin-arm64.dmg |
Apple Silicon - Disk image for M1/M2/M3 Macs. Drag to Applications to install. |
OneMCP-darwin-*-1.0.0.zip |
ZIP archives - Alternative to DMG, extract the .app directly. |
| File | Description |
|---|---|
onemcp_1.0.0_amd64.deb |
Debian/Ubuntu - Install with sudo dpkg -i onemcp_1.0.0_amd64.deb |
onemcp-1.0.0-1.x86_64.rpm |
Fedora/RHEL - Install with sudo rpm -i onemcp-1.0.0-1.x86_64.rpm |
Since the app isn't signed with an Apple Developer certificate, macOS may show a warning that the app "is damaged" or "can't be opened". To fix this:
xattr -cr /Applications/OneMCP.appThen open the app normally.
# Package the app for your platform
npm run package
# Create platform-specific installer
npm run makeBuild outputs by platform:
- Windows: Squirrel installer in
out/make/squirrel.windows/ - macOS: ZIP in
out/make/zip/darwin/ - Linux: DEB in
out/make/deb/and RPM inout/make/rpm/
OneMCP reads and writes to the configuration files of each supported AI tool:
| Tool | Config Path |
|---|---|
| Claude Desktop | %APPDATA%/Claude/claude_desktop_config.json |
| Claude Code | ~/.claude.json |
| Roo | %APPDATA%/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/mcp_settings.json |
| Cline | %APPDATA%/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json |
| VS Code | %APPDATA%/Code/User/settings.json |
| GHCP | %APPDATA%/Code/User/mcp.json |
| Cursor | ~/.cursor/mcp.json |
| Copilot CLI | ~/.copilot/mcp-config.json |
| Tool | Config Path |
|---|---|
| Claude Desktop | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Claude Code | ~/.claude.json |
| Roo | ~/Library/Application Support/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/mcp_settings.json |
| Cline | ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json |
| VS Code | ~/Library/Application Support/Code/User/settings.json |
| GHCP | ~/Library/Application Support/Code/User/mcp.json |
| Cursor | ~/.cursor/mcp.json |
| Copilot CLI | ~/.copilot/mcp-config.json |
| Tool | Config Path |
|---|---|
| Claude Desktop | ~/.config/Claude/claude_desktop_config.json |
| Claude Code | ~/.claude.json |
| Roo | ~/.config/Code/User/globalStorage/rooveterinaryinc.roo-cline/settings/mcp_settings.json |
| Cline | ~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json |
| VS Code | ~/.config/Code/User/settings.json |
| GHCP | ~/.config/Code/User/mcp.json |
| Cursor | ~/.cursor/mcp.json |
| Copilot CLI | ~/.copilot/mcp-config.json |
- Electron
- React 18
- TypeScript
- Vite
- Tailwind CSS
- shadcn/ui
MIT

