Skip to main content
Glama
seanshin0214

Dr. QuantMaster MCP Server

by seanshin0214

event_study_guide

Design event study methodologies for causal inference analysis by selecting event types, staggered treatments, and appropriate estimators.

Instructions

사건연구(Event Study) 설계 가이드

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
event_typeYes사건 유형
staggeredNo시차적 처치 여부
estimatorNo추정량

Implementation Reference

  • The handler function that executes the tool logic for 'event_study_guide'. It takes input arguments and returns guidance on event study estimators (TWFE, CS, SA, DID_M) and recommendations based on whether treatment is staggered.
    function handleEventStudyGuide(args: Record<string, unknown>) {
      return {
        event_type: args.event_type,
        staggered: args.staggered,
        estimators: {
          twfe: "Two-way FE (동질적 처치효과 시)",
          cs: "Callaway-Sant'Anna (이질적 처치효과)",
          sa: "Sun-Abraham (이질적 처치효과)",
          did_m: "de Chaisemartin-D'Haultfoeuille"
        },
        recommendation: args.staggered ? "CS 또는 SA 추정량 권장" : "TWFE 사용 가능"
      };
    }
  • The tool registration entry in the tools array, defining the name, description, and input schema (event_type required, staggered boolean, estimator enum). The handler is dispatched via the switch statement at line 828.
      name: "event_study_guide",
      description: "사건연구(Event Study) 설계 가이드",
      inputSchema: {
        type: "object",
        properties: {
          event_type: { type: "string", description: "사건 유형" },
          staggered: { type: "boolean", description: "시차적 처치 여부" },
          estimator: { type: "string", enum: ["twfe", "cs", "sa", "did_m"], description: "추정량" },
        },
        required: ["event_type"],
      },
    },
  • Input schema definition for the event_study_guide tool, specifying properties and required fields for validation.
    inputSchema: {
      type: "object",
      properties: {
        event_type: { type: "string", description: "사건 유형" },
        staggered: { type: "boolean", description: "시차적 처치 여부" },
        estimator: { type: "string", enum: ["twfe", "cs", "sa", "did_m"], description: "추정량" },
      },
      required: ["event_type"],
    },
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden. It doesn't disclose any behavioral traits such as whether it generates code, provides explanations, requires specific inputs beyond parameters, or has side effects. The term '가이드' (guide) implies informational output, but this is not explicitly stated, leaving the tool's behavior unclear.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise phrase that is front-loaded with the key term '사건연구(Event Study)'. There is no wasted text, but it may be overly terse given the lack of detail. It efficiently conveys the topic without redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations, no output schema, and a vague description, the tool definition is incomplete. The description doesn't clarify what the tool produces (e.g., a report, code, or instructions), leaving significant gaps in understanding its function and output. For a tool with 3 parameters and complex context (event study design), this is inadequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all parameters (event_type, staggered, estimator) with descriptions and an enum for estimator. The description adds no additional meaning beyond what the schema provides, such as explaining relationships between parameters or usage examples. With high schema coverage, the baseline score of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose3/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description '사건연구(Event Study) 설계 가이드' (Event Study Design Guide) states the general purpose but is vague about what the tool actually does. It mentions '설계 가이드' (design guide) which suggests guidance or assistance, but doesn't specify a clear action verb like 'generate', 'create', or 'analyze'. It distinguishes from siblings by focusing on event studies, but lacks specificity about the output or function.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, context, or compare to sibling tools like 'causal_design_guide' or 'timeseries_guide'. Users must infer usage from the title alone, which is insufficient for effective tool selection.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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