Skip to content
VS Code

awesome agent skills for VS Code

io.github.shadowrootdev/awesome-agent-skills

MCP server with 100+ AI agent skills from Anthropic, Vercel, Trail of Bits, Hugging Face & more.

client:VS Code transport:stdio runtime:npm

Install awesome agent skills in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "skills-repo-url",
      "description": "SKILLS_REPO_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "skills-cache-dir",
      "description": "SKILLS_CACHE_DIR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "skills-sync-interval",
      "description": "SKILLS_SYNC_INTERVAL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "log-level",
      "description": "LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "awesome-agent-skills": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "awesome-agent-skills-mcp"
      ],
      "env": {
        "SKILLS_REPO_URL": "${input:skills-repo-url}",
        "SKILLS_CACHE_DIR": "${input:skills-cache-dir}",
        "SKILLS_SYNC_INTERVAL": "${input:skills-sync-interval}",
        "LOG_LEVEL": "${input:log-level}"
      }
    }
  }
}

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

awesome agent skills in other clients