uzair110/agentDesk
3.2
If you are the rightful owner of agentDesk and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
AgentDesk is a multi-agent Model Context Protocol (MCP) server designed to facilitate the registration, management, and interaction with intelligent agents through a user-friendly web interface.
AgentDesk
A multi-agent MCP server with a web UI for registering, managing, and interacting with intelligent agents.
Prerequisites
- Docker & Docker Compose installed on your machine
- (Optional) A free Groq Cloud API key for natural-language agent interactions
Quick Start
-
Clone the repository
git clone https://github.com/uzair110/agentdesk.git cd agentdesk
-
- Configure your Groq Cloud credentials in a
.env.local
file infrontend/
:
- Configure your Groq Cloud credentials in a
NEXT_PUBLIC_API_URL=http://localhost:4000
-
- Configure your credentials in a
.env
file inbackend/
:
- Configure your credentials in a
NEXT_PUBLIC_GROQ_API_KEY= <YOUR_API_KEY>
NEXT_PUBLIC_GROQ_MODEL=llama-3.3-70b-versatile
NEXT_PUBLIC_GITHUB_TOKEN=<GITHUB_TOKEN>
-
Build & run with Docker Compose
docker compose up --build
- Frontend UI will be available at http://localhost:3000
- Backend (MCP server) health-check at http://localhost:4000/health
-
Stopping the services
docker compose down
- Register new agents via the
/agents
REST endpoints.