handbook for VS Code
io.github.jannks/handbook
MCP server for the Handbook API – manage handbook entries via CRUD, overview and tag search.
client:VS Code
transport:stdio
runtime:npm
Install handbook in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "handbook-api-token",
"description": "HANDBOOK_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "handbook-api-url",
"description": "HANDBOOK_API_URL",
"password": true
}
],
"servers": {
"handbook": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@ah-oh/handbook-mcp-server"
],
"env": {
"HANDBOOK_API_TOKEN": "${input:handbook-api-token}",
"HANDBOOK_API_URL": "${input:handbook-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