Skip to main content
Glama

add_maintenance_site

Register customer maintenance sites and update existing records in Notion, smart-updating pages rather than overwriting them.

Instructions

유지보수 사이트(고객사) 정보를 등록하거나 기존 사이트 정보를 갱신합니다. 기존 동일 사이트가 있을 경우 덮어쓰지 않고 기존 페이지를 스마트 업데이트합니다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
notesNo추가 특이사항 (사용자가 명시한 경우만 입력)
locationNo방문 위치 / 주소
site_nameYes고객사 또는 사이트명 (예: 조달청, 도로공사 ITS)
system_infoNo시스템 환경 정보 (사용자가 명시한 경우만 입력)
manager_nameNo담당자 이름 및 직급 (예: 정영은 대리)
manager_emailNo담당자 이메일
manager_phoneNo담당자 연락처
inspection_typeNo점검 방식 (방문, 원격 등)
inspection_cycleNo점검 주기 (예: 분기 방문(3,6,9,12), 월간 원격 등)
next_inspection_dateNo다음 예정 점검일 (YYYY-MM-DD)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries full behavioral burden. It usefully discloses the non-destructive upsert behavior ('does not overwrite, smart-updates the existing page'), which is genuinely important for a write tool. However, it doesn't clarify what 'smart update' actually merges, what happens to omitted fields, permission requirements, or return behavior.

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?

Two tightly written sentences that front-load the core purpose before the upsert caveat. No filler, though it is terse enough that it leaves behavioral questions open rather than earning a 5.

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?

For a 10-parameter write tool with no annotations and no output schema, the description is adequate but thin. It explains the core upsert semantics but omits what a successful call returns and how partial updates are resolved, which matters for an agent deciding what to pass.

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% with all 10 parameters documented in the schema, including Korean-language field hints and format examples. The description adds no parameter-level detail beyond this, so baseline 3 applies.

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 names a specific resource (maintenance site / client company) and states both operations: registration and update. It implicitly distinguishes itself from list_maintenance_sites by being the write-side counterpart, though it never names a sibling explicitly.

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?

There is no explicit when-to-use guidance, no prerequisites, and no routing to alternatives (e.g., when to use list_maintenance_sites to check first). The upsert behavior is described but the agent is not told under what circumstances to reach for this tool versus the work-log or troubleshooting siblings.

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