EveryPage for VS Code
co.everypage/mcp
Share PDFs as tracked links and see who read them, how far they got, and where they stopped.
client:VS Code
transport:stdio
runtime:npm
Install EveryPage in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "everypage-api-key",
"description": "EVERYPAGE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "everypage-base-url",
"description": "EVERYPAGE_BASE_URL",
"password": true
},
{
"type": "promptString",
"id": "everypage-read-only",
"description": "EVERYPAGE_READ_ONLY",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"everypage-mcp"
],
"env": {
"EVERYPAGE_API_KEY": "${input:everypage-api-key}",
"EVERYPAGE_BASE_URL": "${input:everypage-base-url}",
"EVERYPAGE_READ_ONLY": "${input:everypage-read-only}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs