Skip to main content
Glama

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
NameRequiredDescriptionDefault
study_idYes
formatNo

Implementation Reference

  • 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.",
          ),
        );
      },

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/junetic/mcp-usercall'

If you have feedback or need assistance with the MCP directory API, please join our Discord server