naver-blog-mcp
Provides tools for writing and publishing Naver Blog posts, including drafting, formatting with images, tables, formulas, places, and managing categories and drafts.
naver-blog-mcp
An MCP server that writes posts with formatting, images, tables, formulas, and places to Naver Blog. It directly controls SmartEditor ONE with Playwright.
Give it Markdown and it saves a draft; publishing is a separate tool.
## 오늘의 기록
**굵게** 와 [링크](https://naver.com) 가 들어간 문단.
- 목록도
- 됩니다
| 항목 | 지원 |
|------|------|
| 표 | O |

:::file /path/report.pdf:::
:::formula x^2 + y^2 = z^2:::
:::place 강남역:::Read this first
It automatically controls a browser logged in with your Naver account. Overuse can get your account restricted. It was not built for mass auto-posting, and don't add such features.
It does not store passwords. It only reads a cookie file created by a human logging in manually.
That cookie file (
playwright-state/storage_state.json) is account access itself. It's in.gitignore, but be careful not to share it by mistake.If Naver changes the editor, it may break. Then diagnose with
verify_selectors.py(see "When selectors break" below).
Related MCP server: cnblogs-mcp
Requirements
Python 3.11+
A Naver Blog account
Installation
git clone <이 저장소>
cd naver-blog-mcp
uv sync
uv run playwright install chromiumLogin (first time only)
uv run python login_setup.pyWhen the browser opens, log in manually and navigate to your own blog home, then press Enter in the terminal.
CAPTCHA, two-factor authentication, and device registration are all handled by a human.
The cookie is saved to playwright-state/storage_state.json, and the server only reads that file.
If the session expires, run this command again.
MCP registration
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-mcpClaude 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"
}
}
}
}After saving, fully quit Claude Desktop (Cmd+Q) and reopen it.
The path must be an absolute path. GUI apps do not inherit the shell PATH and have a different working directory. If
NAVER_STATEis omitted, the default is a relative path, so the session file won't be found.
Environment variables
Name | Default value | Description |
| (required) | Blog ID. |
|
| Cookie file path. Absolute path recommended |
|
| If |
HEADLESS defaults to false intentionally — because if a CAPTCHA appears, a human must solve it.
If set to true, it fails silently in such situations.
Tools
Tool | Description |
| Check if the session is alive |
| Category list (subcategories are indented) |
| List draft posts |
| Write a post and save as draft. Does not publish |
| Load a draft and publish |
| Delete a draft |
| Delete a published post |
The basic flow is draft → review visually → publish.
Destructive tools (publish_draft, delete_draft, delete_post) require confirm=True.
The first two refuse and show candidates if the target is ambiguous (the title matches multiple posts, or there are 2+ drafts without a specified one).
visibility is one of public / neighbor / both_neighbor / private.
Markdown support scope
All verified by actually inserting into the editor.
Syntax | Result |
| Font size 24 / 19 / 15 |
| Supported |
| Supported within paragraphs and headings |
| Quote component |
| Ordered/unordered list |
| Source code component |
| Divider |
GFM pipe table | Table component (cell formatting preserved) |
| Photo + caption |
| File attachment (10MB each) |
| Formula |
| Place (first search result) |
Images and files accept local paths only (URLs not allowed).
Known limitations
Links inside quotes and tables are lost. To add a link, it must go through the typing path, but typing cannot create quote or table components themselves. It keeps the block shape and drops the link.
Inline code (
`code`) is not supported. Naver has no corresponding feature.Places use the first search result. To specify precisely, give a specific search term (
:::place Gangnam Station Line 2:::). Which place was chosen is shown in the result.There is no way to specify language or style for formulas.
When selectors break
If Naver changes the editor, tools return "... not found". There is a diagnostic script.
export NAVER_BLOG_ID=<블로그아이디>
uv run python verify_selectors.py # 창 띄움
HEADLESS=true uv run python verify_selectors.py # 창 없이It checks the editor's first screen and the publish layer in two steps and outputs OK / HIDDEN / MISS.
If there is a MISS, it leaves dom_probe.txt (list of clickable/inputtable elements) and dom_dump.html,
so you can fix selectors.py based on those.
All selector strings are in one file: src/naver_blog_mcp/selectors.py.
Do not put them in other files.
Structure
src/naver_blog_mcp/
selectors.py 셀렉터 격리 구역. 네이버가 바뀌면 여기만 고친다
ir.py 마크다운 → 블록 IR → HTML. 붙여넣기 가능/불가능 라우팅
editor.py 에디터 구동부 (붙여넣기, 업로드, 툴바 조작)
session.py 쿠키 로드/저장. 비밀번호는 다루지 않는다
server.py MCP 툴 정의
login_setup.py 최초 1회 사람이 직접 로그인
verify_selectors.py 셀렉터 진단The core design is documented with reasons in CLAUDE.md. In particular:
The body uses clipboard HTML paste as the primary path. It is much more stable than toolbar clicks.
Only what paste breaks (lists, code blocks, links) is created separately via toolbar/keyboard.
Images, files, formulas, and places cannot be pasted, so they go through the toolbar.
Contributing
If you find broken selectors, please open an issue with the verify_selectors.py output.
The candidate list in selectors.py is ordered by semantic (data-click-area, data-testid, data-name,
aria-label) → class prefix → obfuscated class. Naver's obfuscated classes often
only rotate hashes, so class*= prefix matching holds up well.
License
MIT — LICENSE
Available Tools
7 toolscheck_sessionA
세션이 살아있는지 확인. 만료면 login_setup.py 재실행이 필요하다.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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 강남역::: 이다.
장소는 검색 결과 중 첫 번째를 쓰며, 무엇을 골랐는지 결과에 표시된다.
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | ||
| title | Yes | ||
| category | No | ||
| markdown | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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건일 때만 동작한다.
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | ||
| confirm | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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 이나 글 번호를 넘긴다. 대상을 반드시 명시해야 한다 — 제목으로 찾아주지 않는다.
| Name | Required | Description | Default |
|---|---|---|---|
| confirm | No | ||
| url_or_log_no | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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
블로그 카테고리 목록을 조회한다. 발행하지 않는다.
발행 설정 레이어를 열어서 읽고 다시 닫는다. 하위 카테고리는 들여쓰기로 표시된다.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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
임시저장 글 목록을 조회한다. 최신순.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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. 비우면 글에 이미 설정된 값을 그대로 쓴다.
| Name | Required | Description | Default |
|---|---|---|---|
| title | No | ||
| confirm | No | ||
| visibility | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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
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.
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.
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.
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
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
MCP-native collaborative markdown editor with real-time AI document editing
Generate PDF, Word (.docx) and PowerPoint (.pptx) documents from Markdown over MCP.
Publish and share access-controlled Markdown documents from any MCP-enabled AI tool.
MCP-native open-source Notion alternative: read & write pages, databases and kanban boards.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables saving articles to WeChat Official Account drafts with support for rich text, automatic image upload, and Markdown rendering including Mermaid diagrams.1
- FlicenseNot gradedqualityDmaintenanceEnables publishing Markdown blog posts to cnblogs.com via MCP protocol using natural language.3
- FlicenseBqualityDmaintenanceMCP server that exposes Tistory blog posting functionality, enabling AI agents to write, upload, and publish posts (public/private) via Playwright and Tistory API.9
- FlicenseBqualityCmaintenanceProvides tools for creating and editing blog post drafts, attaching images, and automating Naver blog editor filling via Chrome.8
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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