mcp libraryofcongress for VS Code
io.github.smeet666/mcp-libraryofcongress
Search inside scanned US newspapers and browse the Library of Congress catalogue. No API key.
client:VS Code
transport:stdio
runtime:npm
Install mcp libraryofcongress in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "loc-user-agent",
"description": "LOC_USER_AGENT",
"password": true
},
{
"type": "promptString",
"id": "loc-min-interval-ms",
"description": "LOC_MIN_INTERVAL_MS",
"password": true
},
{
"type": "promptString",
"id": "loc-timeout-ms",
"description": "LOC_TIMEOUT_MS",
"password": true
},
{
"type": "promptString",
"id": "loc-newspaper-timeout-ms",
"description": "LOC_NEWSPAPER_TIMEOUT_MS",
"password": true
},
{
"type": "promptString",
"id": "loc-log-level",
"description": "LOC_LOG_LEVEL",
"password": true
}
],
"servers": {
"mcp-libraryofcongress": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-libraryofcongress"
],
"env": {
"LOC_USER_AGENT": "${input:loc-user-agent}",
"LOC_MIN_INTERVAL_MS": "${input:loc-min-interval-ms}",
"LOC_TIMEOUT_MS": "${input:loc-timeout-ms}",
"LOC_NEWSPAPER_TIMEOUT_MS": "${input:loc-newspaper-timeout-ms}",
"LOC_LOG_LEVEL": "${input:loc-log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs