Skip to content
VS Code

Fidensa for VS Code

com.fidensa/mcp-server

Independent AI certification authority. Trust scores, search, comparison, and verification.

client:VS Code transport:stdio runtime:npm

Install Fidensa in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fidensa-api-key",
      "description": "FIDENSA_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@fidensa/mcp-server"
      ],
      "env": {
        "FIDENSA_API_KEY": "${input:fidensa-api-key}"
      }
    }
  }
}

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

Fidensa in other clients