OokCite for VS Code
io.github.turtletech-ehf/ookcite-mcp
Catch fabricated citations: verify DOIs/ISBNs and format them in 2900+ CSL styles.
client:VS Code
transport:stdio
runtime:npm
Install OokCite in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "ookcite-api-key",
"description": "OOKCITE_API_KEY",
"password": true
}
],
"servers": {
"ookcite-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@turtletech/ookcite-mcp"
],
"env": {
"OOKCITE_API_KEY": "${input:ookcite-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