Skip to main content
Glama

prereg_template

Generate pre-registration templates for research studies on OSF or AsPredicted platforms, specifying study type and hypotheses to ensure methodological transparency.

Instructions

사전등록 템플릿 생성 (OSF, AsPredicted)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
platformYes플랫폼
study_typeYes연구 유형
hypothesesNo가설 목록

Implementation Reference

  • The handler function implementing the logic for the 'prereg_template' tool. It returns a basic preregistration template structure with predefined sections based on the platform and study type inputs.
    function handlePreregTemplate(args: Record<string, unknown>) { return { platform: args.platform, sections: [ "1. Study Information", "2. Design Plan", "3. Sampling Plan", "4. Variables", "5. Analysis Plan", "6. Other" ] }; }
  • The tool definition including name, description, and input schema for validation of parameters: platform, study_type, and optional hypotheses.
    { name: "prereg_template", description: "사전등록 템플릿 생성 (OSF, AsPredicted)", inputSchema: { type: "object", properties: { platform: { type: "string", enum: ["osf", "aspredicted"], description: "플랫폼" }, study_type: { type: "string", enum: ["experiment", "observational", "replication"], description: "연구 유형" }, hypotheses: { type: "array", items: { type: "string" }, description: "가설 목록" }, }, required: ["platform", "study_type"], },
  • Registration of the tool handler in the main handleToolCall switch statement, mapping the tool name to its handler function.
    return handlePreregTemplate(args);

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/seanshin0214/quantmaster-mcp-server'

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