Skip to content
VS Code

Replication Radar for VS Code

org.sciencelive4all/replication-radar

Turn the OpenAIRE Graph into a ranked replication queue with a Science Live verification overlay.

client:VS Code transport:stdio runtime:pypi

Install Replication Radar in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "github-token",
      "description": "GITHUB_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "radar-openaire-base",
      "description": "RADAR_OPENAIRE_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "radar-nanopub-sparql",
      "description": "RADAR_NANOPUB_SPARQL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "radar-http-timeout",
      "description": "RADAR_HTTP_TIMEOUT",
      "password": true
    }
  ],
  "servers": {
    "replication-radar": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "replication-radar"
      ],
      "env": {
        "GITHUB_TOKEN": "${input:github-token}",
        "RADAR_OPENAIRE_BASE": "${input:radar-openaire-base}",
        "RADAR_NANOPUB_SPARQL": "${input:radar-nanopub-sparql}",
        "RADAR_HTTP_TIMEOUT": "${input:radar-http-timeout}"
      }
    }
  }
}

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

Replication Radar in other clients