Suparse Document Processing for VS Code
io.github.suparse/suparse-mcp
Extract structured data from PDFs and documents with Suparse AI OCR.
client:VS Code
transport:stdio
runtime:npm
Install Suparse Document Processing in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "suparse-api-key",
"description": "SUPARSE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "suparse-api-url",
"description": "SUPARSE_API_URL",
"password": true
}
],
"servers": {
"suparse-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@suparse/mcp"
],
"env": {
"SUPARSE_API_KEY": "${input:suparse-api-key}",
"SUPARSE_API_URL": "${input:suparse-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs