Skip to main content
Glama
seanshin0214

Dr. QuantMaster MCP Server

by seanshin0214

apa_reporting

Generate APA-style statistical reporting templates for research results to ensure proper formatting and compliance with academic standards.

Instructions

APA 스타일 통계 보고 템플릿

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
test_typeYes검정 유형
resultsYes결과 값들

Implementation Reference

  • Registration of the 'apa_reporting' tool including name, description, and input schema for test_type and results.
      name: "apa_reporting",
      description: "APA 스타일 통계 보고 템플릿",
      inputSchema: {
        type: "object",
        properties: {
          test_type: { type: "string", description: "검정 유형" },
          results: { type: "object", description: "결과 값들" },
        },
        required: ["test_type", "results"],
      },
    },
  • The handler function for 'apa_reporting' tool. It takes args with test_type and returns a basic APA style reporting template string.
    function handleApaReporting(args: Record<string, unknown>) {
      return {
        test_type: args.test_type,
        template: "t(df) = X.XX, p < .05, d = X.XX, 95% CI [X.XX, X.XX]"
      };
    }

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