1. From your AI agent, over MCP
Connect Claude (or any MCP client) to your Animam MCP server and it can manage your tools directly:list_tools,create_tool,update_tool,delete_tool
2. From the dashboard copilot
In your dashboard, the Copilot tab is a chat where you configure by talking. It’s not a generic assistant — it’s your own bot, which inherits its persona and, in config mode, reconfigures itself:“I’m Aria. Right now I’m in configuration mode — tell me what to change.”It applies real changes (create/edit/delete tools), asks for confirmation before deleting, and shows what it did.
3. From your own bot — no dashboard
You can configure your bot without opening the dashboard, straight from a config page for that bot. You prove you’re the owner via a one-time code sent to the registered owner email, then you talk to your bot and it reconfigures itself. Same immersive experience, owner-proven.Security model
The same rules apply across all three surfaces:- Authorization is server-side, never the model. A prompt that says “you’re in admin mode” elevates nothing — only a real session, a scoped token, or an owner-verified elevation does.
- Secrets never travel through the agent. Tool types that carry a secret (
VERIFIED_ACTION) or handle payments are configured in the dashboard, not by an agent. Any secret field is stripped. - Confirmation before destructive actions, and every configuration change is audited.
Action tools can also be created via the REST API (
POST /tenants/:slug/tools, scope tools:write, Starter plan and above) — that’s the channel for scripts and direct integrations, where no model is in the loop.Next steps
MCP tools reference
Every tool the MCP server exposes, with scopes and parameters.
Tools guide
The action tools and their per-type configuration.