Skip to main content
Glama

replication_package

Generate structured replication packages for quantitative research by specifying required components like code, data, and documentation to ensure reproducibility.

Instructions

재현성 패키지 구조 가이드

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
journalNo목표 저널
componentsYes포함 요소 (code, data, readme, codebook)

Implementation Reference

  • The handler function implementing the 'replication_package' tool logic. It returns a predefined replication package folder structure based on the input components.
    function handleReplicationPackage(args: Record<string, unknown>) { return { components: args.components, structure: { code: "/code - Analysis scripts", data: "/data - Raw and processed data", output: "/output - Tables and figures", docs: "/docs - README, codebook" } }; }
  • Registration of the 'replication_package' tool in the tools array, including its name, description, and input schema definition.
    { name: "replication_package", description: "재현성 패키지 구조 가이드", inputSchema: { type: "object", properties: { journal: { type: "string", description: "목표 저널" }, components: { type: "array", items: { type: "string" }, description: "포함 요소 (code, data, readme, codebook)" }, }, required: ["components"], }, },
  • Input schema definition for the 'replication_package' tool, specifying properties like journal and components, with components required.
    inputSchema: { type: "object", properties: { journal: { type: "string", description: "목표 저널" }, components: { type: "array", items: { type: "string" }, description: "포함 요소 (code, data, readme, codebook)" }, }, required: ["components"], },
  • Dispatch case in the main handleToolCall function that routes calls to the replication_package handler.
    case "replication_package": return handleReplicationPackage(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