Skip to content
VS Code

OSF CLI Go for VS Code

io.github.edithatogo/osf-cli-go

Read-only MCP tools for authenticated Open Science Framework projects and files.

client:VS Code transport:stdio runtime:oci

Install OSF CLI Go in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "osf-token",
      "description": "OSF_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "osf-username",
      "description": "OSF_USERNAME",
      "password": true
    },
    {
      "type": "promptString",
      "id": "osf-password",
      "description": "OSF_PASSWORD",
      "password": true
    }
  ],
  "servers": {
    "osf-cli-go": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/edithatogo/osf-cli-go-osf-mcp:0.3.2"
      ],
      "env": {
        "OSF_TOKEN": "${input:osf-token}",
        "OSF_USERNAME": "${input:osf-username}",
        "OSF_PASSWORD": "${input:osf-password}"
      }
    }
  }
}

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

OSF CLI Go in other clients