Appearance
Test
Status: NEEDS-ACCOUNT
AgentGPT is a web-only product. There is no SDK, CLI, or installable package. An account at the hosted site is required to use it.
Classification
Browser app (web UI only). All interaction happens through the browser at agentgpt.reworkd.ai.
What was attempted
No CLI or package install was attempted because none exists. AgentGPT has no pip package, npm package, or binary distribution. The only access path is through the web UI or a self-hosted Docker stack.
What is required
Cloud version:
- Create an account at
https://agentgpt.reworkd.ai - Sign in and use the web interface directly
Self-hosted version:
- Docker Desktop with Compose
- Clone
github.com/reworkd/AgentGPT - Run
./setup.shand provide API keys - Starts a Next.js frontend on port 3000 and a FastAPI backend on port 8000
Self-hosted health check (after Docker setup)
bash
curl -o /dev/null -s -w "%{http_code}" http://localhost:3000Expected output:
200bash
curl http://localhost:8000/api/healthExpected output:
json
{"status": "ok"}bash
docker compose psExpected output: All three services showing running or Up:
NAME STATUS
agentgpt-db Up
agentgpt-backend Up
agentgpt-frontend UpDo not use until
An account is created at agentgpt.reworkd.ai, or a self-hosted Docker stack is fully configured with working API keys.