Skip to content
VS Code

pharma signal api for VS Code

io.github.niteowlpt/pharma-signal-api

Drug safety intelligence: 358 drugs, 1M+ FDA adverse events, PV signal detection.

client:VS Code transport:stdio runtime:npm

Install pharma signal api in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "pharma-signal-api-key",
      "description": "PHARMA_SIGNAL_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "pharma-signal-api": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "pharma-signal-mcp"
      ],
      "env": {
        "PHARMA_SIGNAL_API_KEY": "${input:pharma-signal-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

pharma signal api in other clients