Skip to main content
Glama
re171113-byte

Startup Helper MCP

get_startup_checklist

Generate a startup checklist with required permits, estimated costs, and preparation steps for specific business types like cafes, restaurants, or convenience stores.

Instructions

업종별 창업 체크리스트와 필요 인허가를 안내합니다. 예상 비용과 준비 순서도 제공합니다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
business_typeYes창업 업종 (예: 카페, 음식점, 편의점, 미용실)
regionNo창업 지역 (선택)

Implementation Reference

  • Core handler function that normalizes business type, retrieves licenses, checklist, costs, and tips from internal DBs, and returns structured ApiResult.
    export async function getStartupChecklist(
      businessType: string,
      _region?: string
    ): Promise<ApiResult<StartupChecklist>> {
      try {
        // 업종 정규화
        const normalizedType = businessType.includes("카페") || businessType.includes("커피")
          ? "카페"
          : businessType.includes("음식") || businessType.includes("식당") || businessType.includes("국밥")
            ? "음식점"
            : businessType.includes("편의점")
              ? "편의점"
              : businessType.includes("미용") || businessType.includes("헤어")
                ? "미용실"
                : "default";
    
        const licenses = LICENSE_DB[normalizedType] || LICENSE_DB.default;
        const checklist = CHECKLIST_DB[normalizedType] || CHECKLIST_DB.default;
        const estimatedCost = COST_DB[normalizedType] || COST_DB.default;
        const tips = generateTips(normalizedType);
    
        return {
          success: true,
          data: {
            businessType: normalizedType === "default" ? businessType : normalizedType,
            licenses,
            checklist,
            estimatedCost,
            tips,
          },
          meta: {
            source: "창업 가이드 데이터베이스",
            timestamp: new Date().toISOString(),
          },
        };
      } catch (error) {
        console.error("체크리스트 조회 실패:", error);
    
        return {
          success: false,
          error: {
            code: "CHECKLIST_FAILED",
            message: "체크리스트 조회 중 오류가 발생했습니다.",
            suggestion: "업종명을 다시 확인해주세요.",
          },
        };
      }
    }
  • Zod schema defining input parameters: business_type (required string) and region (optional string).
      business_type: z.string().describe("창업 업종 (예: 카페, 음식점, 편의점, 미용실)"),
      region: z.string().optional().describe("창업 지역 (선택)"),
    },
  • src/index.ts:90-104 (registration)
    Registers the 'get_startup_checklist' tool with MCP server, including description, input schema, and wrapper handler that calls the core implementation.
    server.tool(
      "get_startup_checklist",
      "업종별 창업 체크리스트와 필요 인허가를 안내합니다. 예상 비용과 준비 순서도 제공합니다.",
      {
        business_type: z.string().describe("창업 업종 (예: 카페, 음식점, 편의점, 미용실)"),
        region: z.string().optional().describe("창업 지역 (선택)"),
      },
      async ({ business_type, region }) => {
        const result = await getStartupChecklist(business_type, region);
        return {
          content: [{ type: "text", text: JSON.stringify(result, null, 2) }],
          isError: !result.success,
        };
      }
    );
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It describes what the tool outputs (checklists, permits, costs, sequences) but lacks critical behavioral details such as whether it's a read-only operation, if it requires authentication, rate limits, or how data is sourced. For a tool with no annotation coverage, this is a significant gap in transparency.

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 concise and front-loaded, consisting of two efficient sentences that directly state the tool's offerings. There's no unnecessary information, and each sentence contributes to understanding the tool's purpose. However, it could be slightly more structured by explicitly separating outputs (e.g., checklists vs. costs).

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

Completeness3/5

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

Given the tool's moderate complexity (2 parameters, no output schema, no annotations), the description is minimally adequate. It covers what the tool provides but lacks details on behavioral aspects, output format, or error handling. Without annotations or an output schema, the description should do more to compensate, but it meets a basic threshold for a read-oriented tool.

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?

The input schema has 100% description coverage, clearly documenting both parameters ('business_type' and 'region') with examples. The description adds no additional parameter semantics beyond what's in the schema, such as explaining how 'region' affects results or providing more context on 'business_type' options. Baseline score of 3 is appropriate since the schema does the heavy lifting.

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

Purpose4/5

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

The description clearly states the tool's purpose: providing industry-specific startup checklists, required permits, estimated costs, and preparation sequences. It uses specific verbs ('안내합니다', '제공합니다') and identifies the resource ('창업 체크리스트와 필요 인허가'). However, it doesn't explicitly differentiate from sibling tools like 'recommend_policy_funds' which might also provide financial guidance, leaving room for ambiguity.

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 offers no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, exclusions, or compare with sibling tools such as 'analyze_commercial_area' or 'find_competitors', which might be relevant for startup planning. Usage is implied through the description's content but not explicitly stated.

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/re171113-byte/startup-helper-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server