Librarian for VS Code
io.github.terobyte/librarian
Deterministic ebook-to-markdown pipeline with MCP tools to browse, search, and read your books.
client:VS Code
transport:stdio
runtime:pypi
Install Librarian in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "lib-home",
"description": "LIB_HOME",
"password": true
}
],
"servers": {
"librarian": {
"type": "stdio",
"command": "uvx",
"args": [
"librarian-cli"
],
"env": {
"LIB_HOME": "${input:lib-home}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs