> ## Documentation Index
> Fetch the complete documentation index at: https://docs.arclio.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Get started with MCP system setup

## Prerequisites

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

## Setup Process

<Note>
  Follow these steps in order. Each component needs to be running before setting up the next one.
</Note>

<AccordionGroup>
  <Accordion icon="server" title="1. MCP Hub (Port 3000)">
    ```bash theme={null}
    # 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`
  </Accordion>

  <Accordion icon="gauge" title="2. MCP Enterprise (Port 5199)">
    ```bash theme={null}
    # 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`
  </Accordion>

  <Accordion icon="message-bot" title="3. MCP Chatbot (Port 3050)">
    ```bash theme={null}
    # 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`
  </Accordion>
</AccordionGroup>

## Verification

Verify that all components are running:

<CardGroup cols={3}>
  <Card title="MCP Hub" icon="server">
    Running on port 3000
  </Card>

  <Card title="MCP Enterprise" icon="gauge">
    Access dashboard on port 5199
  </Card>

  <Card title="MCP Chatbot" icon="message-bot">
    Available on port 3050
  </Card>
</CardGroup>

## Next Steps

Check the dedicated component pages for detailed configuration:

<CardGroup cols={3}>
  <Card title="MCP Hub" icon="server" href="/components/mcp-hub">
    Additional tools & configuration
  </Card>

  <Card title="MCP Enterprise" icon="gauge" href="/components/mcp-enterprise">
    User management & RBAC
  </Card>

  <Card title="MCP Chatbot" icon="message-bot" href="/components/mcp-chatbot">
    Chatbot customization
  </Card>
</CardGroup>
