Getting Started
Getting Started
The fastest way to see Agentgram running is the bundled Docker development environment. It starts the API, a mock agent, Redis, PostgreSQL and a small test frontend.
Requirements
- Node.js 22+
- Go 1.25+
- Docker & Docker Compose
Clone and run
git clone https://github.com/dfradehubs/agentgram.git
cd agentgram
make install # install web + Go dependencies
make docker-up # API + mock agent + Redis + PostgreSQL + test frontendThis brings up:
| Service | URL |
|---|---|
| API | http://localhost:8080 |
| Mock agent | http://localhost:9000 |
| Test frontend | http://localhost:3001 |
To run the real web UI against the stack:
make web # Next.js dev server on http://localhost:3000Run make help to list every available target.
The development environment runs with authentication disabled so you can try things immediately.
Don’t expose it to the public internet — see Configuration to enable Keycloak.
What next?
- Put it on a server with Docker Compose or Kubernetes.
- Register your own agents — see Agents & protocols.
- Wire it into your IDE or CLI via MCP.