Skip to main content
Glama
pockta11
by pockta11

velog_create_post

Create and publish a new Velog post, or save it as a draft. Uses GraphQL first, then automatically switches to browser automation when API authentication fails.

Instructions

벨로그에 새 글을 작성합니다. GraphQL로 먼저 시도하고, 인증 오류나 API 실패 시 Playwright 브라우저 자동화로 자동 폴백합니다.

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

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

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

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

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

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

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

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

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

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes마크다운 본문
tagsNo
titleYes
accountYesvelog_login으로 등록한 계정 별칭
publishNotrue면 즉시 발행, false면 임시저장(초안)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior3/5

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

With no annotations, the description carries the full disclosure burden. It does disclose a meaningful behavioral trait: trying GraphQL first and falling back to Playwright on auth/API errors, plus the image pipeline (HTML/SVG → screenshot → velcdn upload → ![](...) embed). However, it omits end-state behavior when both paths fail, side effects, and account/auth requirements beyond a schema reference.

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

Conciseness3/5

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

The core behavior is front-loaded in one clear sentence, but the writing style guide is a large 7-bullet block of content-quality guidance that is only tangentially needed for invoking the tool. It is organized with a header and bullets, but much of it is verbose secondary material rather than scannable invocation-critical information.

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?

This is a complex tool (5 parameters, dual execution paths, image generation) with no output schema and no annotations. The description never states what the tool returns on success (post URL? ID?), what happens if both GraphQL and Playwright fail, or whether drafts are recoverable. The style guide is thorough on content but thin on the operational contract an agent needs.

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

Parameters4/5

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

Schema coverage is 60%, and the writing style guide substantially compensates for the gap: it specifies body structure (## subheadings, --- dividers, bold emphasis, lists, short paragraphs), tone (first-person, experience-based), and title hook patterns. This adds rich meaning beyond the schema's bare '마크다운 본문' field. tags and publish gain little from the description, but publish is already well documented in 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 a specific verb (create) and resource (Velog post). The word '새 글' (new post) implicitly distinguishes this from the sibling velog_edit_post, though it never names that 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?

No guidance on when to use this tool versus velog_edit_post, velog_login, or velog_list_posts. There are no usage conditions, prerequisites, or exclusions. The only usage-adjacent text describes the internal fallback mechanism (GraphQL → Playwright), which is behavioral, not selection guidance.

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