Skip to main content
Glama
pockta11
by pockta11

velog_edit_post

Modify previously published Velog posts by changing the title, body, or tags via the MCP integration.

Instructions

기존 벨로그 글을 수정합니다 (GraphQL 전용, 폴백 없음).

[글쓰기 스타일 가이드 - 벨로그 인기글 공통 패턴]

  • 제목: 대조형/질문형 훅 ("~인 줄 알았는데", "~해야 할까?", "~에 반대한다")

  • 도입부: > 인용구로 문제/질문 던지며 시작하거나 "안녕하세요 ~하고 있는 ~입니다" 식 개인 소개

  • 본문 상단에 "한 줄 요약" 또는 "들어가며" 섹션으로 전체 요지 먼저 제시

  • 소제목으로 섹션 구분, 섹션 사이 --- 구분선

  • 짧은 문단 위주, 핵심 문장은 굵게 강조, 나열은 리스트로

  • 1인칭 서술체 ("나는 ~라고 생각한다", "~해봤다") - 설명문보다 경험담 톤

  • 마무리는 요약 반복 대신 회고/전망 한 줄로 끝맺기

  • 개념 설명/구조 설명 구간엔 텍스트 대신 아이콘형 인포그래픽이나 박스+화살표 다이어그램 이미지를 직접 만들어 넣는다 (mermaid 코드블럭 아님 - 실제 PNG). HTML/SVG를 짜서 브라우저로 스크린샷 찍고, velog 에디터의 이미지 업로드로 velcdn에 올린 뒤 그 URL을 로 삽입한다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
bodyNo
tagsNo
titleNo
accountYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.4/5.0
Behavior2/5

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

Without annotations, the description must disclose side effects, but it only notes 'GraphQL 전용, 폴백 없음' (GraphQL-only, no fallback). It does not mention that the operation mutates the post, requires authentication/ownership, or how existing fields are replaced or merged.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The first sentence is efficient, but it is followed by a large, unrelated 'writing style guide' block that dominates the description. Most of that content does not help an agent invoke the tool and should be moved elsewhere.

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

Completeness2/5

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

For a mutation tool with five parameters, no annotations, no schema descriptions, and no output schema, the definition is incomplete. It omits authentication/account requirements, partial-update behavior, error conditions, and return information; the style guide does not fill these gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description fails to explain any of the five parameters, including required 'id' and 'account', or the optional 'body', 'tags', and 'title'. The style guide discusses writing style but not parameter meaning, format, or relation to the schema.

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 opening sentence states the operation clearly: '기존 벨로그 글을 수정합니다' (edits an existing Velog post), with a specific verb and resource. The word '기존' (existing) distinguishes it from creation, but it does not explicitly contrast it with sibling tools.

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 guidance on when to use this tool versus velog_create_post, velog_list_posts, or velog_list_accounts. The only contextual clue is that it edits an existing post, and the long style guide is about content writing, not tool selection.

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