get_study_status
Check the current status of a user interview study to monitor progress and retrieve insights.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| study_id | Yes |
Implementation Reference
- src/index.ts:162-173 (handler)The implementation of the get_study_status MCP tool, which calls the usercall API to retrieve study status.
server.tool( "get_study_status", { study_id: z.string().uuid(), }, async (input) => { const payload = await callUsercallApi( `/api/v1/agent/studies/${input.study_id}`, ); return result(payload); }, );