Skip to content
VS Code

preprint fulltext for VS Code

io.github.genecell/preprint-fulltext

bioRxiv/medRxiv/arXiv preprint full text as structured sections for AI agents + search.

client:VS Code transport:stdio runtime:pypi

Install preprint fulltext in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "contact-email",
      "description": "CONTACT_EMAIL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "openalex-api-key",
      "description": "OPENALEX_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "preprint-fulltext": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "preprint-fulltext"
      ],
      "env": {
        "CONTACT_EMAIL": "${input:contact-email}",
        "OPENALEX_API_KEY": "${input:openalex-api-key}"
      }
    }
  }
}

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

preprint fulltext in other clients