Skip to content
VS Code

Agentic SDLC MCP for VS Code

io.github.sakuracianna/agentic-sdlc-mcp

Agentic SDLC governance and security controls for AI coding agents working with GitHub.

client:VS Code transport:stdio runtime:npm

Install Agentic SDLC MCP 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
    },
    {
      "type": "promptString",
      "id": "sdlc-default-branch",
      "description": "SDLC_DEFAULT_BRANCH",
      "password": true
    }
  ],
  "servers": {
    "agentic-sdlc-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agentic-sdlc-mcp"
      ],
      "env": {
        "GITHUB_TOKEN": "${input:github-token}",
        "GITHUB_OWNER": "${input:github-owner}",
        "GITHUB_REPO": "${input:github-repo}",
        "SDLC_DEFAULT_BRANCH": "${input:sdlc-default-branch}"
      }
    }
  }
}

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

Agentic SDLC MCP in other clients