Skip to main content
Glama
seanshin0214

Dr. QuantMaster MCP Server

by seanshin0214

publication_bias

Detect publication bias in meta-analyses using funnel plots, Egger's test, trim-and-fill, or selection models to assess research validity.

Instructions

출판편향 검정 가이드

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
methodsYes검정 방법 (funnel_plot, egger, trim_fill, selection_model)
kNo연구 수

Implementation Reference

  • Handler function implementing the 'publication_bias' tool. Returns a guide listing common publication bias tests such as funnel plot, Egger's test, trim-and-fill, and selection models based on input methods.
    function handlePublicationBias(args: Record<string, unknown>) {
      return {
        methods: args.methods,
        tests: {
          funnel_plot: "Visual asymmetry check",
          egger: "Regression test for asymmetry",
          trim_fill: "Impute missing studies",
          selection_model: "Model publication process"
        }
      };
    }
  • Registration of the 'publication_bias' tool in the tools array, including name, description, and input schema specifying methods array and optional study count k.
    name: "publication_bias",
    description: "출판편향 검정 가이드",
    inputSchema: {
      type: "object",
      properties: {
        methods: {
          type: "array",
          items: { type: "string" },
          description: "검정 방법 (funnel_plot, egger, trim_fill, selection_model)"
        },
        k: { type: "number", description: "연구 수" },
      },
      required: ["methods"],
    },
  • Switch case in handleToolCall that routes 'publication_bias' calls to the handlePublicationBias handler function.
    case "publication_bias":
      return handlePublicationBias(args);
  • Input schema for 'publication_bias' tool defining required 'methods' array of strings and optional 'k' number for number of studies.
    inputSchema: {
      type: "object",
      properties: {
        methods: {
          type: "array",
          items: { type: "string" },
          description: "검정 방법 (funnel_plot, egger, trim_fill, selection_model)"
        },
        k: { type: "number", description: "연구 수" },
      },
      required: ["methods"],
    },

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