Skip to main content
Prerequisites: Install pflow before continuing.
VS Code with GitHub Copilot supports MCP servers for extended AI capabilities. You can add pflow with one-click install or manual setup.

One-click install

Click the button below to add pflow to VS Code: Install pflow in VS Code If the button doesn’t work, use the web redirect: Install via vscode.dev

Manual setup

1. Open your MCP config file

User config (all projects): ~/.vscode/mcp.json Workspace config (single project): .vscode/mcp.json

2. Add pflow to your config

{
  "mcpServers": {
    "pflow": {
      "type": "stdio",
      "command": "pflow",
      "args": ["mcp", "serve"]
    }
  }
}

3. Reload VS Code

Reload the window or restart VS Code to load the new MCP server.

Verify installation

Ask Copilot to list pflow workflows:
Use pflow to list available workflows
Copilot should be able to access pflow’s tools and respond with workflow information.

Troubleshooting

  1. Make sure VS Code is installed and the vscode: protocol handler is registered
  2. Try the web redirect link instead
  3. Fall back to manual setup
  1. Make sure pflow is installed and in your PATH: pflow --version
  2. Check your MCP config JSON syntax is valid
  3. Reload VS Code window