================== /// MCP /// /// MCP /// ================== [server:online] [protocol:ready]
mcp-manager
by zueai
Desktop application (Electron + React) that lets you install and manage Model Context Protocol (MCP) servers for the Claude Desktop app on macOS.
255
39
Open SourceInstallation
1. Prerequisites
• Node.js ≥18 and npm (or pnpm/yarn)
• An MCP server URL and (if required) an auth token issued by your Claude-based MCP instance
2. Clone the repository
git clone https://github.com/zueai/mcp-manager.git
cd mcp-manager
3. Install JS dependencies
# choose one package manager
npm install # or yarn install / pnpm install
4. Configure the UI
• Copy the sample environment file (if present)
• Edit .env and set:
cp .env.example .env
VITE_MCP_SERVER_URL=https://<your-mcp-server-host>
VITE_MCP_AUTH_TOKEN=<optional-token>
5. Run the development server
npm run dev # opens http://localhost:5173 by default
6. Build for production (static assets)
npm run build # outputs to dist/
npm run preview # quick local preview of the production build
7. Deploy
• Serve dist/ with any static web host (e.g., Vercel, Netlify, S3 + CloudFront, Nginx).
• Ensure the site can reach your MCP server origin (CORS allowed or same origin).
Documentation
License: MIT License
Updated 7/30/2025