Skip to content
VS Code

skill builder mcp for VS Code

com.dmzagent/skill-builder-mcp

Search the skill-builder registry and auto-install skills for Claude Code, Cursor, and Codex.

client:VS Code transport:stdio runtime:npm

Install skill builder mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "skill-api-url",
      "description": "SKILL_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "skill-token",
      "description": "SKILL_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "skill-project-dir",
      "description": "SKILL_PROJECT_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "skill-target",
      "description": "SKILL_TARGET",
      "password": true
    }
  ],
  "servers": {
    "skill-builder-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@dmzagent/skill-builder-mcp"
      ],
      "env": {
        "SKILL_API_URL": "${input:skill-api-url}",
        "SKILL_TOKEN": "${input:skill-token}",
        "SKILL_PROJECT_DIR": "${input:skill-project-dir}",
        "SKILL_TARGET": "${input:skill-target}"
      }
    }
  }
}

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

skill builder mcp in other clients