Read and write Velog (velog.io), the Korean developer blog. Public publishing is opt-in.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An MCP server for Velog, the Korean developer blogging platform. Read your blog, draft posts, publish them, and back everything up β from Claude or any MCP client.
Two Velog MCP servers already exist. This one differs in three ways.
1. Publishing is a permission, not a default. Out of the box the server can create drafts and publish privately. Public publishing requires you to set an environment variable. The model cannot flip that switch β only you can, in your MCP config.
2. Every quirk is measured, not assumed. Velog's GraphQL API is undocumented. This repo records what it actually does, verified against velog-io/velog source and live calls. Six server-side quirks are written up in docs/api-reference.md β including one that silently returns an empty list, and one that can turn your published posts private.
3. Two runtime dependencies. @modelcontextprotocol/sdk and zod. HTTP, test
runner, and TypeScript execution all come from Node itself.
Requires Node.js 22.18 or newer. What runs is the compiled dist/index.js, but development and verification execute .ts directly, and 22.18 is the first release where that works without a flag. CI covers 22.18, 24 and 26.
Installation asks for four values. Leave them all blank and it still installs, running read-only.
| Prompt | If left blank |
|---|---|
| Velog refresh token | Read-only (browse, search, stats still work) |
| Allow public publishing | Drafts and private publishing only |
| Allow profile edits | Profile tools stay off |
| Chrome path | Found automatically in standard locations |
The token goes into the macOS Keychain, not into a settings file in plaintext.
Only values declared sensitive: true reach the Keychain, and a test enforces
that declaration (P7).
Change values later with /plugin manage.
Published on npm, so nothing to clone β your MCP client runs it via npx. See
Configure for the config block and the client-support note.
The token stays in your client's config file here. The plugin route above puts it in the Keychain instead.
Add this to your MCP client config (claude_desktop_config.json, .mcp.json, β¦):
With the Claude Code CLI:
To run a local checkout instead, swap the command for
node /absolute/path/to/velog-mcp/dist/index.js.
Which clients can run this? This is a stdio server: the client starts it as a local process. That works in Claude Code, Claude Desktop, Cursor, and other clients that run MCP servers locally. It does not work in the claude.ai or ChatGPT web apps β both accept only remote MCP servers reachable over HTTP, since the connection originates from their servers rather than your machine. Using it there would mean hosting it publicly and handing your Velog token to that deployment, which defeats the point of keeping the token on your own machine.
Velog has no public write API, so the server authenticates with your browser session cookie.
F12) β Application β Cookies β https://velog.iorefresh_tokenVELOG_REFRESH_TOKEN alone is enough. Velog's server reissues the short-lived
access_token on its own (authPlugin.mts),
and this server picks the refreshed cookie out of the response. One paste lasts
30 days.
VELOG_ACCESS_TOKEN also works but expires in about an hour by itself.
Tokens are read from the environment only. They are never written to disk, and the server never reads your browser's cookie database or your OS keychain. Whatever you put in your MCP config file does live there in plain text, though β that file is yours to protect.
Without a token the server still starts, read-only. Public posts, search, trending, and blog stats all work unauthenticated.
| Environment | What you get |
|---|---|
| (nothing set) | Read everything Β· create drafts Β· publish privately Β· draw and upload images β 22 tools |
VELOG_ALLOW_PUBLIC=1 | β¦plus public publishing (adds an is_private parameter) |
VELOG_ALLOW_PROFILE=1 | β¦plus profile editing (adds 5 tools) |
The two switches are independent β enable either, both, or neither.
Accepted as "on": 1, true, yes, on. Anything else is off β a typo won't quietly
enable it.
When public publishing is off, the is_private parameter does not exist on any
tool, so the model has no way to ask for it. When it's on, is_private appears and
still defaults to true.
Not caution for its own sake. Velog's rate limiter counts only is_private: false
posts:
Private posts don't increment that count. But isPostLimitReached() runs
unconditionally, before privacy is examined β so if ten public posts already exist in
the last five minutes, even a private draft request can trigger the sweep. "Doesn't
increment" is not "can't trigger." That's why write retries stay disabled and the local
limiter stays in place.
Public posts do increment it, and once a post is public it has already gone out through RSS, search indexes, and subscriber email, none of which a delete reaches. That asymmetry is what deserves an explicit opt-in.
Full reasoning: docs/security.md
22 tools. Only 10 of them change anything on Velog.
| Tool | Purpose |
|---|---|
velog_get_post | Read one post, body included |
velog_list_posts | A user's posts, optionally filtered by tag |
velog_search_posts | Keyword search; pass username to search inside one blog |
velog_trending_posts | Trending by day / week / month / year |
velog_recent_posts | Newest posts across Velog |
velog_get_user | Profile, follower counts, bio |
velog_list_series | A user's series, with post counts and IDs |
velog_user_tags | Tags a user writes about, with counts |
| Tool | Purpose |
|---|---|
velog_whoami | Which account the token belongs to (also a token health check) |
velog_list_drafts | Your saved drafts, with IDs |
| Tool | Purpose |
|---|---|
velog_blog_stats | Aggregate views/likes/comments, top posts, per-year and per-tag breakdown |
velog_export_posts | Save posts as Markdown files with YAML front matter |
| Tool | Effect |
|---|---|
velog_create_draft | Save a draft. Never publishes, under any configuration |
velog_update_draft | Replace a draft entirely β omitted fields are reset |
velog_publish_post | Publish a new post |
velog_publish_draft | Publish an existing draft, reusing its stored body |
velog_unpublish_post | Send a published post back to drafts |
velog_update_post | Edit a published post β omitted fields are kept |
velog_update_draftresets what you omit;velog_update_postpreserves it. The asymmetry is deliberate β see docs/tools.md.
Omit thumbnail and the first image in the body becomes the thumbnail, so list and
share cards aren't text-only. What was chosen is always reported back, along with the
other candidates when there is more than one.
thumbnail | Behaviour |
|---|---|
| omitted | first image in the body |
| a URL | used as given |
null | opt out β leave it empty on purpose |
Images inside code fences and inline code are excluded, so a markdown example never
becomes your thumbnail. velog_update_post never replaces an existing thumbnail β
editing a title should not change the card. There, null means "don't fill it in",
not "delete it".
Pass series_name and the server resolves it before saving, then sends the id in the
same request β writing and filing happen in one call. Names are matched ignoring case
and surrounding whitespace; series_id wins if you know it.
β οΈ If the name isn't found, nothing is written β saving without the series would look like it worked. The available series are listed in the error.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/velog)<a href="https://allmcps.com/mcp/velog"><img src="https://allmcps.com/api/badge/velog?style=directory" alt="Velog on AllMCPs" /></a>