Skip to content
VS Code

openapi mcp for VS Code

com.goldpopcon/openapi-mcp

금방 Open API MCP 서버 — 스펙 조회·JWT 서명 코드 생성·로컬 서명/검증

client:VS Code transport:stdio runtime:npm

Install openapi mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "goldpopcon-mcp-allow-live",
      "description": "GOLDPOPCON_MCP_ALLOW_LIVE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "goldpopcon-access-key",
      "description": "GOLDPOPCON_ACCESS_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "goldpopcon-secret-key",
      "description": "GOLDPOPCON_SECRET_KEY",
      "password": true
    }
  ],
  "servers": {
    "openapi-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@keumbang/goldpopcon-openapi-mcp"
      ],
      "env": {
        "GOLDPOPCON_MCP_ALLOW_LIVE": "${input:goldpopcon-mcp-allow-live}",
        "GOLDPOPCON_ACCESS_KEY": "${input:goldpopcon-access-key}",
        "GOLDPOPCON_SECRET_KEY": "${input:goldpopcon-secret-key}"
      }
    }
  }
}

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

openapi mcp in other clients