Skip to content
VS Code

mcp archiveorg for VS Code

io.github.smeet666/mcp-archiveorg

Search inside digitised books, browse the Internet Archive catalogue and read Wayback captures.

client:VS Code transport:stdio runtime:npm

Install mcp archiveorg in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ia-user-agent",
      "description": "IA_USER_AGENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ia-min-interval-ms",
      "description": "IA_MIN_INTERVAL_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ia-history-timeout-ms",
      "description": "IA_HISTORY_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ia-log-level",
      "description": "IA_LOG_LEVEL",
      "password": true
    }
  ],
  "servers": {
    "mcp-archiveorg": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-archiveorg"
      ],
      "env": {
        "IA_USER_AGENT": "${input:ia-user-agent}",
        "IA_MIN_INTERVAL_MS": "${input:ia-min-interval-ms}",
        "IA_HISTORY_TIMEOUT_MS": "${input:ia-history-timeout-ms}",
        "IA_LOG_LEVEL": "${input:ia-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

mcp archiveorg in other clients