Skip to content
VS Code

skill deck for VS Code

io.github.xingbofeng/skill-deck

Expose local Agent Skills as adapter tools, MCP resources, MCP tools, and share artifacts.

client:VS Code transport:stdio runtime:npm

Install skill deck in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "skill-deck-skills-root",
      "description": "SKILL_DECK_SKILLS_ROOT",
      "password": true
    }
  ],
  "servers": {
    "skill-deck": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "skill-deck"
      ],
      "env": {
        "SKILL_DECK_SKILLS_ROOT": "${input:skill-deck-skills-root}"
      }
    }
  }
}

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

skill deck in other clients