ClicheFactory Document Intelligence for VS Code
io.github.clichefactory/clichefactory-mcp
Extract structured JSON from PDFs, images, DOCX, XLSX, CSV, EML attachments, and DSPy pipelines.
client:VS Code
transport:stdio
runtime:pypi
Install ClicheFactory Document Intelligence in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "clichefactory-api-key",
"description": "CLICHEFACTORY_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "clichefactory-api-url",
"description": "CLICHEFACTORY_API_URL",
"password": true
},
{
"type": "promptString",
"id": "llm-model-name",
"description": "LLM_MODEL_NAME",
"password": true
},
{
"type": "promptString",
"id": "llm-api-key",
"description": "LLM_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "ocr-model-name",
"description": "OCR_MODEL_NAME",
"password": true
},
{
"type": "promptString",
"id": "ocr-api-key",
"description": "OCR_API_KEY",
"password": true
}
],
"servers": {
"clichefactory-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"clichefactory-mcp"
],
"env": {
"CLICHEFACTORY_API_KEY": "${input:clichefactory-api-key}",
"CLICHEFACTORY_API_URL": "${input:clichefactory-api-url}",
"LLM_MODEL_NAME": "${input:llm-model-name}",
"LLM_API_KEY": "${input:llm-api-key}",
"OCR_MODEL_NAME": "${input:ocr-model-name}",
"OCR_API_KEY": "${input:ocr-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