Skip to content
VS Code

skillfed mcp for VS Code

io.github.skill-federation/skillfed-mcp

Find vetted agent skills for your task — privacy-preserving skill discovery over MCP.

client:VS Code transport:stdio runtime:npm

Install skillfed mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "skillfed-endpoint",
      "description": "SKILLFED_ENDPOINT",
      "password": true
    }
  ],
  "servers": {
    "skillfed-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "skillfed-mcp"
      ],
      "env": {
        "SKILLFED_ENDPOINT": "${input:skillfed-endpoint}"
      }
    }
  }
}

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

skillfed mcp in other clients