Skip to main content

Prerequisites

  • Node.js (v16 or higher)
  • Python 3.10+
  • Docker and Docker Compose
  • Poetry

Setup Process

Follow these steps in order. Each component needs to be running before setting up the next one.
# Clone and set up MCP Hub
git clone <mcp-hub-repo>
cd mcp-hub

# Install dependencies
npm install

# Start the development server
npm run dev
Your MCP Hub will be running at http://localhost:3000
# Clone and set up
git clone <mcp-enterprise-repo>
cd mcp-enterprise

# Copy environment file
cp .env.example .env.dev

# Install and initialize
make install

# Terminal 1: Start backend
make run-backend

# Terminal 2: Start frontend
make run-frontend
Access the admin dashboard at http://localhost:5199
# Clone and set up
git clone <mcp-chatbot-repo>
cd mcp-chatbot

# Install dependencies
npm install

# Set your Anthropic API key
echo "ANTHROPIC_API_KEY=your-api-key" > .env

# Start the development server
npm run dev
The chatbot will be available at http://localhost:3050

Verification

Verify that all components are running:

MCP Hub

Running on port 3000

MCP Enterprise

Access dashboard on port 5199

MCP Chatbot

Available on port 3050

Next Steps

Check the dedicated component pages for detailed configuration: