An intent is a structured description of why an action is being taken. Every MCP tool call requires anDocumentation Index
Fetch the complete documentation index at: https://docs.agentity.to/llms.txt
Use this file to discover all available pages before exploring further.
intent object. Agentity records each intent, giving you a complete audit log of everything your agents have done.
Intent fields
| Field | Type | Description |
|---|---|---|
message | string | A human-readable description of why the action is being taken. |
subject | enum | The resource the action targets. |
action | enum | The type of operation being performed. |
subject values
EMAIL PHONE VIRTUAL_CARD VAULT IDENTITY
action values
CREATE READ UPDATE DELETE
Example intent object
Reviewing intents
You can retrieve the full intent history for your account using the dashboard.Why intents are required
Intents serve two purposes:- Auditability — Because agents act autonomously, you need a reliable record of their actions. Requiring an intent on every call ensures no operation goes unlogged.
- Clarity — A descriptive
messagemakes it possible to understand agent behavior after the fact, even without replaying execution logs.