EasyDocForms for VS Code
com.easydocforms/easydocforms-mcp
Healthcare intake for agents: import blank PDFs, create patient fill links, fetch completed PDFs.
client:VS Code
transport:stdio
runtime:oci
Install EasyDocForms in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "easydocforms-api-key",
"description": "EASYDOCFORMS_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "easydocforms-base-url",
"description": "EASYDOCFORMS_BASE_URL",
"password": true
}
],
"servers": {
"easydocforms-mcp": {
"type": "stdio",
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/easydocforms/easydocforms-mcp:0.1.2"
],
"env": {
"EASYDOCFORMS_API_KEY": "${input:easydocforms-api-key}",
"EASYDOCFORMS_BASE_URL": "${input:easydocforms-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs