VS Code works with Flyweel MCP through the Continue extension, which adds AI capabilities with MCP support.
Prerequisites
Install the Continue extension first:
- Open VS Code
- Go to Extensions (
Cmd+Shift+X/Ctrl+Shift+X) - Search for “Continue”
- Install the Continue extension
Quick Setup
Step 1: Get Your Token
- Go to app.flyweel.co
- Click Settings → API Tokens
- Click Create New Token
- Name it (e.g., “VS Code - Work”)
- Click Generate and copy it immediately
Your token looks like: fwl_a1b2c3d4...
Step 2: Configure Continue
Open or create the Continue configuration file:
macOS/Linux:
~/.continue/config.jsonWindows:
%USERPROFILE%\.continue\config.jsonAdd the Flyweel MCP server:
{ "mcpServers": [ { "name": "flyweel", "url": "https://api.flyweel.co/mcp-server/mcp", "headers": { "X-API-Key": "fwl_YOUR_TOKEN_HERE" } } ]}Replace fwl_YOUR_TOKEN_HERE with your actual token.
If you have an existing config.json, add the mcpServers array to your existing configuration.
Step 3: Reload VS Code
Press Cmd+Shift+P (Mac) or Ctrl+Shift+P (Windows/Linux), then type “Reload Window” and press Enter.
Step 4: Test It
Open the Continue sidebar and ask:
What Google Ads accounts do I have connected to Flyweel?If you see your accounts, you’re connected.
Troubleshooting
”Authentication Error”
Your token is invalid or deleted.
Fix: Generate a new token at app.flyweel.co → Settings → API Tokens.
”No accounts found”
You haven’t connected ad accounts to Flyweel.
Fix: Go to Settings → Connections in Flyweel and connect your Google Ads or Meta Ads.
Continue doesn’t see Flyweel
The config file isn’t loading correctly.
Fix:
- Verify the file is at the correct location
- Check JSON syntax at jsonlint.com
- Make sure
mcpServersis an array[]not an object{} - Reload VS Code window