Skip to content
VS Code

ossfind for VS Code

io.github.aniket-kr1030/ossfind

Safety-ranked open-source component discovery for agents across six package ecosystems.

client:VS Code transport:stdio runtime:npm

Install ossfind in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "github-token",
      "description": "GITHUB_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "library-io-api-key",
      "description": "LIBRARY_IO_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ossfind-fixtures",
      "description": "OSSFIND_FIXTURES",
      "password": true
    }
  ],
  "servers": {
    "ossfind": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "ossfind"
      ],
      "env": {
        "GITHUB_TOKEN": "${input:github-token}",
        "LIBRARY_IO_API_KEY": "${input:library-io-api-key}",
        "OSSFIND_FIXTURES": "${input:ossfind-fixtures}"
      }
    }
  }
}

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

ossfind in other clients