velog-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| velog_whoamiA | 현재 설정된 토큰으로 로그인되는 벨로그 계정을 확인합니다. 발행 전 인증 점검용입니다. |
| velog_loginA | 벨로그 로그인 창을 열어 토큰을 발급받아 저장합니다. 토큰이 만료돼 쓰기 도구가 인증 오류를 낼 때 이 도구를 호출하면 됩니다. 벨로그에는 비밀번호 로그인이 없어 브라우저에서 사용자가 직접 인증해야 하며, 한 번 로그인하면 프로필이 저장돼 다음부터는 headless=True 로 창 없이 갱신할 수 있습니다. |
| velog_list_postsA | 벨로그 글 목록을 최신순으로 가져옵니다. username 을 생략하면 VELOG_USERNAME 을 씁니다. drafts_only=True 로 내 임시저장 글만 볼 수 있습니다(인증 필요). |
| velog_get_postA | url_slug 로 글 하나를 가져옵니다. 마크다운 본문(body)까지 포함합니다. |
| velog_list_seriesA | 시리즈 목록과 각 시리즈의 UUID를 가져옵니다. 발행 시 series_id 에 넣을 값입니다. |
| velog_publish_postA | 새 글을 발행합니다. body 는 마크다운입니다. draft=True 면 임시저장으로만 올라가고 공개되지 않으니, 확인이 필요할 때 사용하세요. |
| velog_update_postA | 기존 글을 수정합니다. post_id 는 필수이고, 나머지는 넘긴 항목만 바뀝니다. 본문 일부만 고칠 때도 body 는 전체를 보내야 합니다(부분 수정 불가). |
| velog_delete_postA | 글을 삭제합니다. 복구할 수 없으므로 confirm=True 를 명시해야 실행됩니다. |
| velog_create_seriesA | 새 시리즈를 만들고 UUID를 돌려줍니다. 발행 시 series_id 로 사용하세요. |
| velog_publish_markdown_fileA | 로컬 마크다운 파일을 벨로그에 올립니다. 프런트매터(title·tags·slug·series_id 등)를 읽고, 발행 후 파일에 velog_post_id 를 기록합니다. 같은 파일을 다시 호출하면 새 글을 만들지 않고 기존 글을 수정하므로, 문서를 고칠 때마다 그대로 재실행하면 됩니다. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
Each tool has a clear, distinct purpose: authentication (whoami, login), post CRUD (list, get, publish, update, delete), series management (list, create), and file import (publish_markdown_file). No overlapping functionality.
All tools follow the consistent pattern velog_<verb_snake_case> (e.g., velog_list_posts, velog_create_series). Naming is uniform and predictable.
10 tools cover the core functionality of a blogging platform without being excessive or insufficient. Each tool serves a necessary role.
The set covers authentication, full CRUD for posts, series listing and creation, and file import. Missing update/deletion for series and perhaps a tool to upload images, but these are minor omissions for common workflows.