GETTING STARTED
Installation
Get started with MCP HUB in your local environment. This guide covers prerequisites, installation methods, and initial setup.
Prerequisites
Before installing MCP HUB, make sure your workstation has these core requirements.
- Python 3.10 or newer
- Node.js 18 or newer for the dashboard
- Git and a writable workspace directory
- Access to the API providers you plan to enable
Windows is supported. If you use PowerShell, prefer explicit environment variables over shell profile aliases for production setups.
Install MCP HUB
Clone the repository, install Python dependencies, and start the local dashboard.
Clone and install
bash
git clone https://github.com/mukkuul976/MCP HUB-Network.gitcd mcphubpip install -e .npm installAfter install, run
mcphub --version and npm run dev to confirm both the CLI and dashboard are available.Quick Start
Boot the server, define a network, create an agent, and dispatch your first task.
Start the server
bash
mcphub server start --port 8000 --host 0.0.0.0Create an agent
bash
mcphub agent create --name release-analyst --model gpt-4-turbo --network base-sepolia --role "Review changelogs and prepare rollout notes"Dispatch a task
bash
mcphub task create --agent release-analyst --prompt "Summarize today's deployment blockers"