Skip to main content
Glama

save_approved_minutes

DestructiveIdempotent

Save approved meeting minutes to a file only when a matching preview token is provided, ensuring saved content matches approved preview.

Instructions

미리보기에서 발급된 승인 토큰이 일치할 때만 회의록을 파일로 저장합니다.

이 서버에서 유일한 쓰기 도구입니다. 호출 전 반드시 두 조건을 만족해야 합니다.

  1. preview_save_minutes가 AWAITING_APPROVAL을 돌려주고 토큰을 발급했다.

  2. 사용자가 그 내용을 보고 명시적으로 저장을 승인했다.

토큰은 기술적 무결성(승인한 내용 == 저장되는 내용)만 보장합니다. 사용자 승인을 대신하지 않습니다. 사용자가 "저장해"라고 말하지 않았다면 호출하지 마세요.

Args: note_id: 메모 id. minutes_markdown: 저장할 회의록 전문. approval_token: 미리보기가 발급한 토큰. expected_write_mode: 선택. 지정하면 실제 write_mode와 다를 때 거부합니다.

Returns: SaveResponse: path(저장 경로), audit(감사 로그 경로), write_mode(CREATE / OVERWRITE / NO_CHANGE).

Raises: ToolFailure: TOKEN_MISMATCH, VALIDATION_FAILED, WRITE_MODE_CHANGED, INVALID_NOTE_ID. 모두 복구 방법이 메시지에 포함됩니다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
note_idYes메모 id
approval_tokenYespreview_save_minutes가 발급한 승인 토큰
minutes_markdownYes저장할 회의록 전문. preview_save_minutes에 넘긴 것과 한 글자라도 다르면 토큰 검증에 실패합니다.
expected_write_modeNo미리보기에서 본 write_mode. 지정하면 실제 상태와 다를 때 저장을 거부합니다. 덮어쓰기 사고 방지용입니다.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
auditYes
stageYes회의록 워크플로에서 지금 위치한 단계
statusYes이 호출의 결과 상태
note_idYes
write_modeYes
next_actionsNo이어서 호출하면 좋은 도구 목록
Behavior5/5

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

The description discloses that this is a write/destructive operation (consistent with destructiveHint), requires explicit user consent beyond the token, and explains that the token only ensures technical integrity, not user approval. It also details failure modes with recovery information, adding safety-critical context beyond what annotations provide.

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 well-structured with a bolded uniqueness statement, numbered prerequisites, and separate sections for Args, Returns, and Raises. It front-loads the critical condition (token match) and is not unnecessarily verbose given the complexity, though it could trim some repetition of parameter details.

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

Completeness5/5

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

The description covers all necessary aspects: when to use, prerequisites, user consent, parameter meanings, return values, and error recovery. Since an output schema exists, it doesn't need to detail the response shape further, making it fully complete for a write 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 schema already covers all parameters with clear descriptions, including the exact-match requirement for minutes_markdown and the safety purpose of expected_write_mode. The description repeats these details rather than adding new meaning, so it adds minimal value beyond the schema, which has full coverage.

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

Purpose5/5

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

The description clearly states the tool's action: saving meeting minutes to a file only when the approval token matches. It also explicitly identifies itself as the only write tool on the server, distinguishing it from preview_save_minutes and other read-oriented siblings.

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

Usage Guidelines5/5

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

It specifies exact prerequisites: preview_save_minutes must have returned AWAITING_APPROVAL and issued a token, and the user must have explicitly approved. It warns not to call unless the user has said to save, and names the only write tool, leaving no ambiguity about when to invoke it.

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/minsik102/fileanalyzer_mcp_testmode'

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