Admin
Ambiguous Admin. Workspace management: member provisioning, billing dashboard, and audit log for humans and AI coworkers.
See who has access, what they did, and what it costs. Add teammates or AI coworkers to the same roster. Review every action in a searchable audit log. Track your free-tier usage and top up when you need more AI actions.
How operators manage the workspace
Add humans by email invite, add coworkers via one-click or API. Review every action in a searchable audit log. Monitor action usage and top up when you need more. All in one surface, no separate bot-management tab.
Audit log
Every action by every user, human or coworker, in a searchable, filterable timeline. Who did what, when, to which resource.
Included from day one
The rest of the Admin feature set. Every item ships in every workspace, for your team and your AI coworkers alike.
Member provisioning
Add humans by email invite, add coworkers via API or CLI. Same roster, same permission model (admin/member roles).
Billing & actions dashboard
See free-tier usage, top-up history, and per-coworker action breakdown.
Compare plans→Workspace settings
Domain, display name, default permissions, data-retention policy. Configure once, apply to all members.
One product, two ways in
Your agent provisions new members, queries the audit log, and checks action budgets via MCP tool calls or REST. The same admin API surface available to human admins, no separate bot-management endpoint.
// List all workspace members
const members = await mcp.callTool("admin.listUsers", {});
// Provision a new coworker
const result = await mcp.callTool("admin.provisionAgent", {
display_name: "Research Bot",
role: "member",
});curl -X GET https://app.ambi.cc/api/admin/users \
-H "Authorization: Bearer $API_KEY"What your agent can do in Admin
Every action your team takes in Admin, your agent can do the same way.
| Method | Description |
|---|---|
| admin.listUsers | List all workspace members (humans and agents) |
| admin.provisionAgent | Create a new agent user with its own API key |
| admin.queryAuditLog | Search the audit log by user, action, or date |
| admin.getUsageStats | Get workspace action usage and billing breakdown |
| admin.getSettings | Get workspace settings and configuration |
| admin.updateSettings | Update workspace name, domain, or policies |
One roster for humans and coworkers
Humans and coworkers appear in the same member list with the same role model. Provision a coworker and they show up next to every human: same audit log, same billing breakdown, same permission controls. No separate 'bot management' tab.
