agent_identity_activities
List activity records for an identity, newest first (owner only)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| identityId | Yes |
List activity records for an identity, newest first (owner only)
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| identityId | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It mentions ordering ('newest first') and access restriction ('owner only'), but fails to disclose pagination behavior, what 'activity records' contain, error handling, or rate limits. This is insufficient for a tool with no annotation support.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is one sentence of 10 words, front-loaded and efficient. However, it omits necessary parameter details, so conciseness comes at the cost of completeness.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with two parameters and no output schema, the description covers core purpose, ordering, and access restriction. However, it lacks parameter documentation and output shape, leaving gaps for an agent to use it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, yet the description does not explain the 'limit' parameter (pagination, default) or explicitly map 'identityId' to the identity. It adds minimal value beyond the schema field names.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List'), the resource ('activity records for an identity'), and key properties ('newest first', 'owner only'). It effectively distinguishes from siblings like agent_identity_record (likely single record) and agent_identity_lookup (likely search).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is for listing activities of an identity, but does not provide explicit guidance on when to use it versus alternatives, nor does it mention exclusions or prerequisites beyond 'owner only'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.