Skip to main content
Glama

naver-blog-mcp

Servidor MCP para escribir entradas en Naver Blog con formato, imágenes, tablas, fórmulas y lugares. Usa Playwright para manipular directamente el Smart Editor ONE.

Si le das markdown, guarda el borrador automáticamente; la publicación está separada en una herramienta aparte.

## 오늘의 기록

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

- 목록도
- 됩니다

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

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

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

Léelo primero

  • Manipula automáticamente el navegador con la sesión iniciada en tu cuenta de Naver. Si se usa en exceso, la cuenta puede ser sancionada. No está hecho para publicación masiva automática, y no añadas esa función.

  • No guarda contraseñas. Solo lee el archivo de cookies creado al iniciar sesión manualmente.

  • Ese archivo de cookies (playwright-state/storage_state.json) es el acceso a la cuenta en sí. Está en .gitignore, pero ten cuidado de no compartirlo por error.

  • Puede romperse si Naver cambia el editor. En ese caso, diagnostica con verify_selectors.py (ver "Cuando los selectores se rompen" más abajo).

Related MCP server: cnblogs-mcp

Requisitos

  • Python 3.11+

  • uv

  • Cuenta de Naver Blog

Instalación

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

Iniciar sesión (solo la primera vez)

uv run python login_setup.py

Cuando se abra el navegador, inicia sesión manualmente, ve hasta la página principal de tu blog y pulsa Enter en la terminal. El CAPTCHA, la verificación en dos pasos y el registro del dispositivo los gestiona una persona. Las cookies se guardan en playwright-state/storage_state.json, y el servidor solo lee ese archivo.

Si la sesión caduca, vuelve a ejecutar este comando.

Registro en 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"
      }
    }
  }
}

Después de guardar, cierra Claude Desktop por completo (Cmd+Q) y vuelve a abrirlo.

La ruta debe ser siempre absoluta. Las aplicaciones GUI no heredan el PATH del shell y su directorio de trabajo también es distinto. Si omites NAVER_STATE, el valor por defecto es una ruta relativa y no encontrará el archivo de sesión.

Variables de entorno

Nombre

Valor por defecto

Descripción

NAVER_BLOG_ID

(obligatorio)

ID del blog. blog.naver.com/<aquí>

NAVER_STATE

playwright-state/storage_state.json

Ruta del archivo de cookies. Se recomienda ruta absoluta

HEADLESS

false

Si es true, no muestra la ventana del navegador

Que el valor por defecto de HEADLESS sea false es intencional: si aparece un CAPTCHA, una persona debe resolverlo. Si lo pones en true, fallará silenciosamente en esa situación.

Herramientas

Herramienta

Descripción

check_session()

Comprueba si la sesión sigue activa

list_categories()

Lista de categorías (las subcategorías van con sangría)

list_drafts()

Lista de borradores guardados

create_draft(title, markdown, category, tags)

Escribe la entrada y la guarda como borrador. No publica

publish_draft(confirm, title, visibility)

Carga un borrador y lo publica

delete_draft(confirm, title)

Elimina un borrador

delete_post(url_or_log_no, confirm)

Elimina una entrada publicada

El flujo básico es guardar borrador → revisar visualmente → publicar.

Las herramientas destructivas (publish_draft, delete_draft, delete_post) exigen confirm=True. Las dos primeras se rechazan si el objetivo es ambiguo (el título coincide con varias entradas, o hay 2 o más borradores sin especificar) y muestran los candidatos.

visibility puede ser public / neighbor / both_neighbor / private.

Alcance del soporte de markdown

Todo está probado insertándolo en el editor real.

Sintaxis

Resultado

Títulos # ## ###

Tamaño de letra 24 / 19 / 15

**negrita** *cursiva* ~~tachado~~

Compatible

[texto](url)

Compatible dentro de párrafos y títulos

> cita

Componente de cita

- lista / 1. lista

Lista ordenada / no ordenada

```código```

Componente de código fuente

---

Línea divisoria

Tabla con pipes de GFM

Componente de tabla (mantiene el formato dentro de las celdas)

![pie](ruta local)

Foto + pie

:::file ruta local:::

Archivo adjunto (10 MB por archivo)

:::formula ...:::

Fórmula

:::place término de búsqueda:::

Lugar (el primero de los resultados de búsqueda)

Las imágenes y archivos solo admiten rutas locales (no URLs).

Limitaciones conocidas

  • Los enlaces dentro de citas y tablas se pierden. Para insertar un enlace hay que usar la ruta de escritura, pero con la escritura no se puede crear el componente de cita o tabla en sí. Se mantiene la forma del bloque y se descarta el enlace.

  • El código en línea (`code`) no es compatible. Naver no tiene una función equivalente.

  • Para los lugares se usa el primero de los resultados de búsqueda. Para especificarlo con precisión, da un término de búsqueda concreto (:::place 강남역 2호선:::). En el resultado se indica qué lugar se eligió.

  • No hay forma de especificar idioma o estilo en las fórmulas.

Cuando los selectores se rompen

Si Naver cambia el editor, la herramienta devuelve "...no se encontró". Hay un script de diagnóstico.

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

Inspecciona la primera pantalla del editor y la capa de publicación en 2 fases y muestra OK / HIDDEN / MISS. Si hay algún MISS, deja dom_probe.txt (lista de elementos clicables e introducibles) y dom_dump.html, así que con eso solo tienes que arreglar selectors.py.

Todas las cadenas de selectores están en un único archivo: src/naver_blog_mcp/selectors.py. No las pongas en otros archivos.

Estructura

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

El diseño principal está documentado en CLAUDE.md con sus motivos. En particular:

  • Para el cuerpo, pegar HTML desde el portapapeles es la vía principal. Es mucho más estable que hacer clic en la barra de herramientas.

  • Solo lo que el pegado rompe (listas, bloques de código, enlaces) se crea por separado con la barra de herramientas o el teclado.

  • Las imágenes, archivos, fórmulas y lugares no se pueden pegar, así que pasan por la barra de herramientas.

Contribuciones

Si encuentras un selector roto, abre un issue junto con la salida de verify_selectors.py. La lista de candidatos en selectors.py se ordena por significado (data-click-area, data-testid, data-name, aria-label) → prefijo de clase → clase ofuscada. Las clases ofuscadas de Naver suelen ser solo hashes rotativos, así que la coincidencia por prefijo class*= aguanta bien.

Licencia

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