ruflo

๐Ÿ’ป VS Code

/docs/setup--configuration/vs-code

Requires: VS Code 1.102+ (MCP support is GA)

Method 1: Command Palette

  1. Press Cmd+Shift+P (Mac) / Ctrl+Shift+P (Windows)
  2. Run MCP: Add Server
  3. Enter server details

Method 2: Workspace Config

Create .vscode/mcp.json in your project:

json
{
  "mcpServers": {
    "ruflo": {
      "command": "npx",
      "args": ["ruflo@latest", "mcp", "start"],
      "env": {
        "ANTHROPIC_API_KEY": "sk-ant-..."
      }
    }
  }
}

Sources: VS Code MCP Docs, MCP Integration Guides