paperclip_get_agent
Retrieve a complete configuration and status for a specific agent by providing its UUID. Ideal for inspecting settings before updates or verifying runtime parameters.
Instructions
Get full details for a single agent by UUID.
Args:
agentId: string — Agent UUID (example: "agt_abc123")
Returns: Agent object: id, name, urlKey, role, title, status, capabilities, runtimeConfig, adapterConfig, permissions, budget.
Examples:
Use when: reading an agent's current config before updating it or checking its heartbeat settings
Don't use when: you need a list of agents — use paperclip_list_agents to discover IDs first
Error Handling:
401: authentication failed → check PAPERCLIP_API_KEY
404: agent not found → verify ID with paperclip_list_agents
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agentId | Yes | Agent UUID | |
| response_format | Yes | Output format: 'markdown' (default, human-readable) or 'json' (structured) | markdown |