Continue
Set up TaskFlow with Continue (VS Code / JetBrains)
Prerequisites
- Node.js 18+
- VS Code or JetBrains IDE with Continue extension installed
Step 1: Install TaskFlow MCP Server
bash
1npm install -g @dalmasonto/taskflow-mcpStep 2: Configure MCP Server
Create .continue/mcpServers/taskflow.yaml in your project root:
yaml
1name: TaskFlow MCP2version: 0.0.13schema: v14mcpServers:5 - name: taskflow6 type: stdio7 command: taskflow-mcp8 args: []Alternatively, use JSON format (compatible with Claude Desktop):
json
1{2 "mcpServers": {3 "taskflow": {4 "command": "taskflow-mcp",5 "args": []6 }7 }8}Save this as .continue/mcpServers/mcp.json in your project.
Step 3: Verify
Open Continue's panel in VS Code or JetBrains and switch to Agent mode. Ask:
"What TaskFlow MCP tools do you have available?"
MCP tools are only available in Agent mode, not in Chat mode.
Tips
- Continue supports both YAML and JSON config formats
- MCP tools only work in Agent mode: they are not available in Chat mode
- No explicit approval settings - tools are available once configured