Follow these steps in order. Each component needs to be running before setting up the next one.
1. MCP Hub (Port 3000)
Copy
# Clone and set up MCP Hubgit clone <mcp-hub-repo>cd mcp-hub# Install dependenciesnpm install# Start the development servernpm run dev
Your MCP Hub will be running at http://localhost:3000
2. MCP Enterprise (Port 5199)
Copy
# Clone and set upgit clone <mcp-enterprise-repo>cd mcp-enterprise# Copy environment filecp .env.example .env.dev# Install and initializemake install# Terminal 1: Start backendmake run-backend# Terminal 2: Start frontendmake run-frontend
Access the admin dashboard at http://localhost:5199
3. MCP Chatbot (Port 3050)
Copy
# Clone and set upgit clone <mcp-chatbot-repo>cd mcp-chatbot# Install dependenciesnpm install# Set your Anthropic API keyecho "ANTHROPIC_API_KEY=your-api-key" > .env# Start the development servernpm run dev
The chatbot will be available at http://localhost:3050