get_conversation
Retrieve a specific conversation including all messages and associated tags from the Cuti-E admin platform using its unique ID.
Instructions
Get a single conversation with its messages and tags.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| conversation_id | Yes | The conversation ID (conv_...) |
Implementation Reference
- index.js:419-422 (handler)The handler logic for "get_conversation" which executes a GET request to the Cuti-E API.
case "get_conversation": { result = await apiRequest("GET", `/v1/conversations/${args.conversation_id}`); break; } - index.js:130-144 (schema)The tool registration and schema definition for "get_conversation".
{ name: "get_conversation", description: "Get a single conversation with its messages and tags.", inputSchema: { type: "object", properties: { conversation_id: { type: "string", description: "The conversation ID (conv_...)", }, }, required: ["conversation_id"], }, },