Skip to main content
Glama

write_results_section

Generate results section templates for quantitative research papers using APA, ASA, or Econometrica formatting styles based on analysis type and findings.

Instructions

결과 섹션 작성 템플릿 생성

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
analysis_typeYes분석 유형
resultsYes주요 결과
styleNo스타일

Implementation Reference

  • Registers the 'write_results_section' tool in the main tools array, including its name, description, and input schema definition.
    name: "write_results_section", description: "결과 섹션 작성 템플릿 생성", inputSchema: { type: "object", properties: { analysis_type: { type: "string", description: "분석 유형" }, results: { type: "object", description: "주요 결과" }, style: { type: "string", enum: ["apa", "asa", "econometrica"], description: "스타일" }, }, required: ["analysis_type", "results"], }, },
  • The main handler function that implements the logic for the 'write_results_section' tool. It extracts analysis_type and style from args and returns a placeholder template response.
    function handleWriteResultsSection(args: Record<string, unknown>) { return { analysis_type: args.analysis_type, style: args.style, template: "Results section template based on analysis type and style guide" }; }
  • Dispatches calls to the 'write_results_section' tool to its handler function within the central handleToolCall switch statement.
    case "write_results_section": return handleWriteResultsSection(args);
  • Defines the input schema for the 'write_results_section' tool, specifying properties for analysis_type, results, and style with required fields.
    inputSchema: { type: "object", properties: { analysis_type: { type: "string", description: "분석 유형" }, results: { type: "object", description: "주요 결과" }, style: { type: "string", enum: ["apa", "asa", "econometrica"], description: "스타일" }, }, required: ["analysis_type", "results"], },

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