humanpen mcp for VS Code
io.github.humanpen/humanpen-mcp
Document-level AI humanizer for .docx/.pptx: whole file, selected passages, or flagged text.
client:VS Code
transport:stdio
runtime:npm
Install humanpen mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "humanpen-api-key",
"description": "HUMANPEN_API_KEY",
"password": true
}
],
"servers": {
"humanpen-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"humanpen-mcp"
],
"env": {
"HUMANPEN_API_KEY": "${input:humanpen-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