Skip to content
VS Code

openpaper mcp for VS Code

io.github.federicodeponte/openpaper-mcp

Autonomous research engine: auto research from a prompt to a fully-cited academic paper via MCP

client:VS Code transport:stdio runtime:pypi

Install openpaper mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "openpaper-api-token",
      "description": "OPENPAPER_API_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "openpaper-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "openpaper-mcp"
      ],
      "env": {
        "OPENPAPER_API_TOKEN": "${input:openpaper-api-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

openpaper mcp in other clients