Skip to content
VS Code

Velog for VS Code

io.github.milcho0604/velog

Claude 나 Codex 에서 벨로그(velog.io) 글을 읽고 쓰고 백업한다. 다이어그램과 시퀀스도 그린다. 공개 발행은 사람이 켤 때만 열린다.

client:VS Code transport:stdio runtime:npm

Install Velog in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "velog-access-token",
      "description": "VELOG_ACCESS_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "velog-refresh-token",
      "description": "VELOG_REFRESH_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "velog-allow-public",
      "description": "VELOG_ALLOW_PUBLIC",
      "password": true
    },
    {
      "type": "promptString",
      "id": "velog-allow-profile",
      "description": "VELOG_ALLOW_PROFILE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "velog-chrome-path",
      "description": "VELOG_CHROME_PATH",
      "password": true
    }
  ],
  "servers": {
    "velog": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@milcho0604/velog-mcp"
      ],
      "env": {
        "VELOG_ACCESS_TOKEN": "${input:velog-access-token}",
        "VELOG_REFRESH_TOKEN": "${input:velog-refresh-token}",
        "VELOG_ALLOW_PUBLIC": "${input:velog-allow-public}",
        "VELOG_ALLOW_PROFILE": "${input:velog-allow-profile}",
        "VELOG_CHROME_PATH": "${input:velog-chrome-path}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Velog in other clients