Skip to main content
Glama

naver-blog-mcp

用于在 Naver 博客上撰写包含格式、图片、表格、公式、地点的文章的 MCP 服务器。通过 Playwright 直接操作 SmartEditor ONE。

提供 Markdown 后会自动保存为草稿,发布则通过单独的工具体现。

## 오늘의 기록

**굵게** 와 [링크](https://naver.com) 가 들어간 문단.

- 목록도
- 됩니다

| 항목 | 지원 |
|------|------|
| 표   | O    |

![캡션](/path/photo.png)

:::file /path/report.pdf:::
:::formula x^2 + y^2 = z^2:::
:::place 강남역:::

请先阅读

  • 自动操作已登录 Naver 账号的浏览器。 过度使用可能导致账号被处罚。本工具并非为批量自动发布而设计,请勿添加此类功能。

  • 不保存密码。 仅读取由人工登录生成的 Cookie 文件。

  • 该 Cookie 文件(playwright-state/storage_state.json本身就是账号访问权限。虽然已加入 .gitignore,但请注意不要误分享。

  • 如果 Naver 更改编辑器,本工具可能会失效。届时请使用 verify_selectors.py 进行诊断(见下文“选择器失效时”)。

Related MCP server: cnblogs-mcp

环境要求

  • Python 3.11+

  • uv

  • Naver 博客账号

安装

git clone <이 저장소>
cd naver-blog-mcp
uv sync
uv run playwright install chromium

登录(首次)

uv run python login_setup.py

浏览器打开后,请手动登录并进入自己的博客首页,然后在终端中按回车。 CAPTCHA、二次验证、设备注册均由人工处理。 Cookie 会保存到 playwright-state/storage_state.json,服务器仅读取该文件。

会话过期时,重新执行此命令即可。

MCP 注册

Claude Code

claude mcp add naver-blog \
  -e NAVER_BLOG_ID=<블로그아이디> \
  -e NAVER_STATE=/절대경로/naver-blog-mcp/playwright-state/storage_state.json \
  -- /절대경로/naver-blog-mcp/.venv/bin/naver-blog-mcp

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json (Windows:%APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "naver-blog": {
      "command": "/절대경로/naver-blog-mcp/.venv/bin/naver-blog-mcp",
      "env": {
        "NAVER_BLOG_ID": "<블로그아이디>",
        "NAVER_STATE": "/절대경로/naver-blog-mcp/playwright-state/storage_state.json"
      }
    }
  }
}

保存后,请完全退出(Cmd+Q)Claude Desktop 并重新启动。

路径必须使用绝对路径。 GUI 应用不会继承 Shell PATH,工作目录也不同。 如果省略 NAVER_STATE,默认值为相对路径,将无法找到会话文件。

环境变量

名称

默认值

说明

NAVER_BLOG_ID

(必填)

博客 ID。blog.naver.com/<此处>

NAVER_STATE

playwright-state/storage_state.json

Cookie 文件路径。建议使用绝对路径

HEADLESS

false

设为 true 时不显示浏览器窗口

HEADLESS 默认值为 false 是有意为之——因为出现 CAPTCHA 时需要人工解决。 如果设为 true,在这种情况会静默失败。

工具

工具

说明

check_session()

检查会话是否有效

list_categories()

分类列表(子分类缩进显示)

list_drafts()

草稿列表

create_draft(title, markdown, category, tags)

撰写文章并保存草稿。不发布

publish_draft(confirm, title, visibility)

加载草稿并发布

delete_draft(confirm, title)

删除草稿

delete_post(url_or_log_no, confirm)

删除已发布的文章

基本流程为保存草稿 → 人工确认 → 发布

破坏性工具(publish_draftdelete_draftdelete_post)要求 confirm=True。 前两者在目标不明确时(标题匹配多篇文章,或未指定时草稿超过 2 篇)会拒绝执行并显示候选列表。

visibilitypublic / neighbor / both_neighbor / private 之一。

Markdown 支持范围

以下均为实际在编辑器中验证过的结果。

语法

结果

# ## ### 标题

字号 24 / 19 / 15

**粗体** *斜体* ~~删除线~~

支持

[文本](url)

在段落、标题内支持

> 引用

引用组件

- 列表 / 1. 列表

有序/无序列表

```代码```

源代码组件

---

分隔线

GFM 管道表格

表格组件(保留单元格内格式)

![说明](本地路径)

图片 + 说明

:::file 本地路径:::

文件附件(每个 10MB)

:::formula ...:::

公式

:::place 搜索词:::

地点(搜索结果第一个)

图片、文件仅支持本地路径(不支持 URL)。

已知限制

  • 引用和表格内的链接会丢失。 要插入链接需通过输入路径,但通过输入无法创建引用、表格组件本身。因此保留块形式并丢弃链接。

  • 不支持行内代码(`code`)。 Naver 没有对应功能。

  • 地点使用搜索结果中的第一个。如需精确定位,请提供具体的搜索词(:::place 강남역 2호선:::)。选择的是哪个地点会显示在结果中。

  • 公式没有指定语言、样式的手段。

选择器失效时

如果 Naver 更改编辑器,工具会返回 "...을 못 찾음"(找不到...)。提供了诊断脚本。

export NAVER_BLOG_ID=<블로그아이디>
uv run python verify_selectors.py            # 창 띄움
HEADLESS=true uv run python verify_selectors.py   # 창 없이

分两个阶段检查编辑器首屏和发布层,输出 OK / HIDDEN / MISS。 如果存在 MISS,会生成 dom_probe.txt(可点击、可输入的元素列表)和 dom_dump.html, 查看这些文件后只需修改 selectors.py 即可。

所有选择器字符串都集中在 src/naver_blog_mcp/selectors.py 一个文件中。 请勿放在其他文件中。

结构

src/naver_blog_mcp/
  selectors.py   셀렉터 격리 구역. 네이버가 바뀌면 여기만 고친다
  ir.py          마크다운 → 블록 IR → HTML. 붙여넣기 가능/불가능 라우팅
  editor.py      에디터 구동부 (붙여넣기, 업로드, 툴바 조작)
  session.py     쿠키 로드/저장. 비밀번호는 다루지 않는다
  server.py      MCP 툴 정의
login_setup.py   최초 1회 사람이 직접 로그인
verify_selectors.py  셀렉터 진단

核心设计及理由记录在 CLAUDE.md 中。特别是:

  • 正文以剪贴板 HTML 粘贴为主要路径。比点击工具栏稳定得多。

  • 仅对粘贴会破坏的内容(列表、代码块、链接)通过工具栏、键盘单独创建。

  • 图片、文件、公式、地点无法通过粘贴实现,因此通过工具栏处理。

贡献

如果发现选择器失效,请附上 verify_selectors.py 的输出提交 Issue。 selectors.py 的候选列表按语义(data-click-areadata-testiddata-namearia-label)→ 类名前缀 → 混淆类 的顺序排列。Naver 的混淆类通常只是哈希轮转,因此 class*= 前缀匹配能很好地应对。

许可证

MIT — LICENSE

Available Tools

7 tools
check_sessionA

세션이 살아있는지 확인. 만료면 login_setup.py 재실행이 필요하다.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. The word '확인' (check) plus the conditional about session expiry strongly indicate a non-mutating status check. The mention of needing to re-run login_setup.py on expiry adds useful operational context beyond a bare 'check session' statement.

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

Conciseness5/5

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

The description is two short sentences: one states the core action, the other provides the actionable follow-up for the failure condition. Every sentence earns its place, with no filler or tautology.

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?

Given zero parameters, low complexity, and the presence of an output schema, the description does not need to document return values. It covers the tool's purpose and the single important post-condition (re-run login_setup.py on expiry), making it complete for an agent to invoke and interpret.

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?

The tool has zero parameters and schema description coverage is 100%, so there is no parameter ambiguity for the description to resolve. This matches the baseline for a 0-parameter tool.

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 states a specific action and resource: 'check if session is alive' (세션이 살아있는지 확인). This clearly distinguishes it from the sibling content-management tools, all of which operate on categories, drafts, posts, or publishing. There is no ambiguity about what the tool does.

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

Usage Guidelines3/5

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

The description implies a use case: verify session liveness, and provides a concrete follow-up action if the session is expired: re-run login_setup.py. However, it does not explicitly state when to prefer this tool over alternatives or when not to use it, leaving some inference to the agent.

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

create_draftA

마크다운으로 글을 작성하고 임시저장한다. 발행하지 않는다.

지원 서식: 제목(1~3), 굵게, 기울임, 취소선, 인라인코드, 링크, 인용, 순서/비순서 목록, 코드블록, 구분선, 이미지, 표(GFM 파이프), 파일 첨부, 수식, 장소. 이미지는 캡션, 파일 첨부는 :::file 로컬경로::: 형식이다. 둘 다 로컬 파일 경로여야 한다 (URL 불가). 파일은 개당 10MB 제한. 수식은 :::formula x^2+y^2=z^2:::, 장소는 :::place 강남역::: 이다. 장소는 검색 결과 중 첫 번째를 쓰며, 무엇을 골랐는지 결과에 표시된다.

ParametersJSON Schema
NameRequiredDescriptionDefault
tagsNo
titleYes
categoryNo
markdownYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and does so richly: it discloses non-publishing behavior, supported Markdown formats, image/file attachment syntax, local-path-only restriction, 10MB file limit, formula/place syntax, and that place picks the first search result and reports it in the output.

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 core statement is front-loaded and every included detail (formats, path rules, limit, place behavior) is useful. It is dense but not bloated.

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

Completeness4/5

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

With an output schema present, return values need no explanation. The description covers the tool's non-trivial input conventions and place-selection behavior; minor gaps such as title/category handling and session requirements are not critical for correct invocation.

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 has 0% parameter descriptions, so the description must compensate. It thoroughly explains the markdown parameter's syntax and supported formats, but provides nothing about title, category, or tags beyond what their names/schema already imply.

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?

States a specific verb+resource: writes a post in Markdown and saves it as a draft, and explicitly distinguishes itself by noting it does not publish. This clearly separates it from siblings like publish_draft.

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

Usage Guidelines4/5

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

The description gives clear context: use this to create and temporarily save a draft, not to publish. It does not explicitly name sibling alternatives or exclusion conditions, but the '발행하지 않는다' statement makes the tool's placement among draft/publish siblings clear.

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

delete_draftA

임시저장 글을 삭제한다. 복구되지 않으므로 confirm=True 를 명시해야 한다.

title 규칙은 publish_draft 와 같다: 부분 일치 가능, 여러 글과 맞으면 거부, 비워두면 임시저장이 정확히 1건일 때만 동작한다.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleNo
confirmNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.2/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and succeeds. It discloses that deletion is unrecoverable, that confirm=True is mandatory, that partial title matches are allowed, that multiple matches are rejected, and that an empty title only works when exactly one draft exists. These are non-obvious, safety-critical behaviors.

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

Conciseness5/5

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

Two compact sentences with no filler. The first front-loads the destructive action and mandatory confirmation; the second packs the title-matching rules efficiently. Every sentence earns its place.

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 is complete for a destructive tool with two parameters and an output schema. It covers irreversibility, confirmation, and title disambiguation. The reference to publish_draft for title rules is acceptable because that sibling tool provides the shared semantics.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must compensate. It fully documents both parameters: confirm must be true because the operation is irreversible, and title follows specific matching rules (partial match, multiple-match rejection, empty-title single-draft restriction). This goes well beyond the bare 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?

States a specific verb and resource: 'Deletes the draft post' (임시저장 글을 삭제한다), which clearly identifies the tool's action. The draft resource naturally distinguishes it from delete_post, but it does not explicitly name a sibling to differentiate from, so it stops short of a 5.

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?

Provides no guidance about when to choose delete_draft over alternatives such as delete_post or publish_draft. The title rule reference to publish_draft is behavioral context, not usage guidance. The agent must infer when this tool is appropriate from the name alone.

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

delete_postA

발행된 글을 삭제한다. 복구되지 않으므로 confirm=True 를 명시해야 한다.

임시저장 삭제(delete_draft)와는 다른 대상이다. 글 URL 이나 글 번호를 넘긴다. 대상을 반드시 명시해야 한다 — 제목으로 찾아주지 않는다.

ParametersJSON Schema
NameRequiredDescriptionDefault
confirmNo
url_or_log_noYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations, the description carries the burden and discloses critical behavior: deletion is irreversible, confirm=True is mandatory, and lookup by title is not supported. It could add auth or error behavior, but the safety-critical information is present.

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

Conciseness5/5

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

Concise and front-loaded: the core action, irreversibility, and confirm requirement appear first, followed by relevant sibling differentiation and target-specification guidance. No filler.

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

Completeness4/5

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

For a destructive tool with no annotations, this covers the essential points: target type, irreversibility, confirmation, and distinction from delete_draft. Minor gaps include failure behavior and session/auth prerequisites, but the output schema exists and return-value explanation is not required.

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 0%, but the description compensates by explaining url_or_log_no as the post URL or log number and clarifying that confirm=True must be set even though the schema defaults it to false. Both parameters receive meaningful semantic context.

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?

States a specific action and resource: deletes a published post. Explicitly distinguishes itself from delete_draft, making the target resource and scope clear.

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

Usage Guidelines4/5

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

Clearly differentiates this tool from delete_draft and instructs the agent to pass a URL or log number rather than a title. It stops short of explicitly stating 'use delete_draft for drafts,' but the distinction is strongly implied.

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

list_categoriesA

블로그 카테고리 목록을 조회한다. 발행하지 않는다.

발행 설정 레이어를 열어서 읽고 다시 닫는다. 하위 카테고리는 들여쓰기로 표시된다.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description carries the burden of behavior disclosure. It explains that the tool opens the publishing-settings layer, reads it, closes it, and does not publish. It also discloses that subcategories are shown with indentation, adding useful behavioral context beyond the tool name.

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

Conciseness5/5

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

The description is three short sentences with no filler. The main purpose is front-loaded, and each additional sentence contributes meaningful behavioral detail about side effects and output formatting.

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?

For a zero-parameter listing tool with an output schema, the description is complete: it identifies the resource, confirms no publishing side effect, and explains the indentation behavior. Nothing critical is missing for an agent to call this tool correctly.

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?

The input schema has zero parameters and schema description coverage is 100%, so there are no parameter semantics to document. The baseline for a zero-parameter tool is 4, and the description does not need to add parameter detail.

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 states a specific verb and resource: it 'retrieves the blog category list.' It also explicitly says 'does not publish,' distinguishing it from the sibling publish_draft and clarifying that this is a read-only listing operation.

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

Usage Guidelines4/5

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

The description clearly implies use when the agent needs the blog's category list and explicitly rules out publishing behavior. It does not name an alternative tool, but the sibling set makes the purpose sufficiently distinct.

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

list_draftsA

임시저장 글 목록을 조회한다. 최신순.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. It does disclose that this is a read-style lookup ('조회한다') and specifies ordering ('최신순'), but it does not mention auth requirements, scope of drafts, pagination, or potential empty results.

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

Conciseness5/5

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

The description is extremely concise: a single sentence stating the action and ordering. It is front-loaded with the core purpose and contains no filler or redundant explanation.

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

Completeness4/5

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

For a zero-parameter list tool with an output schema, the description is nearly complete. It provides the resource, the action, and the ordering. It could add session or ownership context, but this is not essential for correctly invoking the tool.

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?

The tool has no parameters, so the baseline is 4. The description correctly provides no parameter-specific details, and nothing further is needed for an agent to form arguments.

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 clearly states the operation: retrieve the list of temporary-saved posts, sorted by latest. It is distinct from siblings like create_draft, delete_draft, and publish_draft, and from list_categories by resource, though it does not explicitly name an alternative.

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

Usage Guidelines3/5

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

Usage is implied: use this tool when the agent needs the list of drafts, especially in latest-first order. There is no explicit when-to-use or when-not-to-use guidance, nor mention of alternatives, but the operation itself makes the intended context reasonably clear.

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

publish_draftA

임시저장 글을 불러와서 발행한다. confirm=True 를 명시해야 동작한다.

글쓰기 화면은 임시저장 글을 자동 복구하지 않으므로 목록에서 명시적으로 불러온다. title 은 부분 일치도 되지만, 여러 글과 맞으면 거부한다. 비워두면 임시저장이 정확히 1건일 때만 동작한다 — 발행은 되돌리기 어려우니 대상을 사람이 정하게 한다.

visibility: public | neighbor | both_neighbor | private. 비우면 글에 이미 설정된 값을 그대로 쓴다.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleNo
confirmNo
visibilityNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations provided, the description carries the full behavioral burden and does so thoroughly. It discloses the mandatory confirmation flag, the rejection of ambiguous title matches, the restriction to exactly one draft when title is empty, the difficulty of undoing publication, and the visibility default behavior. These are meaningful behavioral traits beyond just 'publishes a draft'.

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

Conciseness5/5

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

The description is compact and front-loaded, leading with the primary action and the mandatory confirm flag. Every subsequent sentence adds essential edge-case or parameter context without redundancy or filler.

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?

Given the tool's complexity and the absence of annotations, the description covers all three parameters, the confirmation requirement, ambiguity handling, irreversibility, and default visibility. Since an output schema exists, return-value documentation is not the description's burden; nothing critical is missing for an agent to invoke this tool correctly.

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

Parameters5/5

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

Schema description coverage is 0%, so the description must supply all parameter meaning. It fully explains title matching semantics, the confirm requirement, and the allowed visibility values and their default behavior. This more than compensates for the empty schema descriptions.

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 core action: loading a saved draft and publishing it. It distinguishes itself from sibling tools like create_draft, list_drafts, and delete_draft by focusing on the publish workflow, and adds the critical precondition that confirm=True is required.

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

Usage Guidelines4/5

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

The description gives strong usage context: drafts are not auto-restored, so the user must explicitly select one from a list first. It also explains the conditions under which publication will proceed (unique title match, or exactly one draft when title is empty). However, it does not explicitly name sibling tools as alternatives, leaving some routing implicit.

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

TDQS

A4.2/5.0
Disambiguation5/5

Each tool maps to a distinct resource and action: session check, category listing, draft creation, draft listing, draft deletion, published-post deletion, and draft publishing. delete_draft and delete_post are clearly separated by their descriptions and targets.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern: check_session, list_categories, create_draft, list_drafts, delete_draft, delete_post, publish_draft. The singular/plural variation is natural for list vs. single-item operations.

Tool Count5/5

Seven tools is a well-scoped size for a Naver blog management server. Each tool covers a meaningful part of the authoring workflow without redundancy or bloat.

Completeness2/5

The set covers draft creation, listing, deletion, and publishing, plus published-post deletion, but lacks any way to update a draft or published post. More critically, there is no tool to list or search published posts, so delete_post is a dead end unless the user already supplies a URL or post number.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

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/jjorae/naver-blog-mcp'

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