Dashboard
Memorose ships with a separate dashboard UI plus authenticated dashboard API routes under /v1/dashboard.
URLs
- Local dashboard UI:
http://127.0.0.1:3100/dashboard - Backend API:
http://127.0.0.1:3000/v1/dashboard - Backend redirect:
http://127.0.0.1:3000/dashboard
Login
Public login endpoint:
POST /v1/dashboard/auth/login
Default credentials are admin / admin unless you set DASHBOARD_ADMIN_PASSWORD.
Note on Docker Deployments: If you are deploying the Dashboard via a custom
docker-compose.ymlordocker run, you must set theDASHBOARD_API_ORIGINenvironment variable for the Dashboard container to point to the backend API (e.g.,DASHBOARD_API_ORIGIN=http://memorose:3000). If omitted, the Dashboard will attempt to proxy login requests to127.0.0.1inside its own container, resulting in aconnect ECONNREFUSED 127.0.0.1:3000error.
Main Features
- memory browser
- graph explorer
- search playground
- cluster status
- agent metrics
- organization management
- organization knowledge views
- runtime config inspection
Important API Routes
POST /v1/dashboard/auth/loginPOST /v1/dashboard/auth/passwordGET /v1/dashboard/statsGET /v1/dashboard/memoriesGET /v1/dashboard/memories/:idGET /v1/dashboard/graphPOST /v1/dashboard/searchPOST /v1/dashboard/chatGET /v1/dashboard/configGET /v1/dashboard/agentsGET /v1/dashboard/cluster/statusGET /v1/dashboard/organizationsPOST /v1/dashboard/organizations
The dashboard API is not a separate product line. It is the operational UI for the same runtime.