Connect MerchantFlow to VS Code (GitHub Copilot)
Connect MerchantFlow to VS Code via GitHub Copilot MCP support so Copilot can read your ecommerce data.
Connect MerchantFlow to VS Code
GitHub Copilot supports MCP servers as of VS Code v1.95+. Copilot Chat can call MerchantFlow tools from any file you're editing.
Prerequisites
- VS Code v1.95 or newer
- GitHub Copilot active subscription
- MerchantFlow Pro tier subscription
Step 1: Copy the config
From Settings → MCP Server in MerchantFlow, click Install in VS Code and copy the config.
Step 2: Create .vscode/mcp.json
In your project root, create .vscode/mcp.json (or add to the existing file) with:
{
"servers": {
"merchantflow": {
"url": "https://mcp.merchantflow.ai/mcp",
"type": "http"
}
}
}
Step 3: Reload the window
Command palette (Cmd+Shift+P / Ctrl+Shift+P) → Developer: Reload Window.
Step 4: Authorize
The first Copilot chat that uses a MerchantFlow tool will open a browser window for OAuth. Click Allow access.
Step 5: Ask Copilot
In the Copilot Chat panel:
@mcp merchantflow what's my bank runway at current burn?
Copilot will call get_bank_balance and answer.
Add the Skill file to Copilot instructions
Download https://mcp.merchantflow.ai/api/mcp/skill?format=vscode and save it as .github/copilot-instructions.md in your repo. Copilot automatically reads this file for every chat.