Skip to main content

get_action_agent

Get discovery metadata for one Action Agent by ID. The tool does not return prompt, layout, tools, or MCP config.

get_action_agent

Get discovery metadata for one agent by ID. It does not return the system prompt, studio layout, tools, or MCP connections.

Use this after list_action_agents when you have an actionAgentId. Then start chat with start_action_agent_session.

See Installation for auth and response_format.

Arguments

ArgumentTypeRequiredDescription
actionAgentIdstringYesAgent ID from list_action_agents.
organizationIdstringNoOrganization ID for access checks.
response_formatjson or markdownNoDefault json.

Example

{
  "actionAgentId": "agent_123",
  "organizationId": "org_123"
}

Returns

JSON with success and action_agent.

Not found: call list_action_agents and use an ID from that list.

On this page