internet archive mcp server for VS Code
io.github.cyanheads/internet-archive-mcp-server
Search the Wayback Machine and IA library (40M+ items), fetch snapshots, item metadata, and text.
client:VS Code
transport:stdio
runtime:npm
Install internet archive mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mcp-log-level",
"description": "MCP_LOG_LEVEL",
"password": true
}
],
"servers": {
"internet-archive-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@cyanheads/internet-archive-mcp-server"
],
"env": {
"MCP_LOG_LEVEL": "${input:mcp-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