get_study_results
Retrieve structured user interview analysis with themes and verbatim quotes to understand participant feedback and insights.
Instructions
Returns analysis results. When presenting results, always quote specific participant responses verbatim using the quotes field in each theme.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| study_id | Yes | ||
| format | No |
Implementation Reference
- src/index.ts:175-193 (handler)The implementation of the `get_study_results` tool, including schema definition and handler logic in `src/index.ts`.
server.tool( "get_study_results", "Returns analysis results. When presenting results, always quote specific participant responses verbatim using the quotes field in each theme.", { study_id: z.string().uuid(), format: z.enum(["summary", "full"]).optional(), }, async (input) => { const format = input.format ?? "summary"; const payload = await callUsercallApi( `/api/v1/agent/studies/${input.study_id}/results?format=${format}`, ); return result( appendNote( payload, "When presenting these results, include verbatim participant quotes from each theme's quotes array. Do not paraphrase — show the actual words.", ), ); },