SOAPNoteAPI for VS Code
com.soapnoteapi/soapnoteapi-mcp
Generate clinical SOAP notes, billing codes, and visit summaries from transcripts or audio.
client:VS Code
transport:stdio
runtime:npm
Install SOAPNoteAPI in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "soapnoteapi-key",
"description": "SOAPNOTEAPI_KEY",
"password": true
}
],
"servers": {
"soapnoteapi-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"soapnoteapi-mcp"
],
"env": {
"SOAPNOTEAPI_KEY": "${input:soapnoteapi-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs