Skip to content
VS Code

okffs for VS Code

io.github.neturely/okffs

MCP server connecting Claude Code to GitHub for an issue to branch to PR to close workflow.

client:VS Code transport:stdio runtime:npm

Install okffs in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "github-token",
      "description": "GITHUB_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "github-owner",
      "description": "GITHUB_OWNER",
      "password": true
    },
    {
      "type": "promptString",
      "id": "github-repo",
      "description": "GITHUB_REPO",
      "password": true
    }
  ],
  "servers": {
    "okffs": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@neturely/okffs"
      ],
      "env": {
        "GITHUB_TOKEN": "${input:github-token}",
        "GITHUB_OWNER": "${input:github-owner}",
        "GITHUB_REPO": "${input:github-repo}"
      }
    }
  }
}

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

okffs in other clients