From 53ba3f3917666bf8ed2512b009e8c1af89756a69 Mon Sep 17 00:00:00 2001 From: johnxie Date: Fri, 5 Jun 2026 04:23:53 -0700 Subject: [PATCH] docs: add Windsurf, Cline, and VS Code setup guides (closes #16) Quick Start covered only Claude Desktop + Cursor, though the tagline names Windsurf. Add copy-paste stdio config blocks for Windsurf (mcp_config.json), Cline (MCP Servers panel), and VS Code (.vscode/mcp.json, servers key + ${input:} prompt). Renumber the HTTP section accordingly. --- README.md | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 55 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b3c5fea..83a7d8b 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,61 @@ Add to your Cursor MCP settings: } ``` -### 4. HTTP / SSE Mode (remote & custom clients) +### 4. Windsurf + +Add to `~/.codeium/windsurf/mcp_config.json` (or **Settings → Cascade → MCP → Add Server**): + +```json +{ + "mcpServers": { + "taskade": { + "command": "npx", + "args": ["-y", "@taskade/mcp-server"], + "env": { + "TASKADE_API_KEY": "your-api-key-here" + } + } + } +} +``` + +### 5. Cline + +In VS Code, open the Cline **MCP Servers** panel → **Configure MCP Servers** and add: + +```json +{ + "mcpServers": { + "taskade": { + "command": "npx", + "args": ["-y", "@taskade/mcp-server"], + "env": { + "TASKADE_API_KEY": "your-api-key-here" + } + } + } +} +``` + +### 6. VS Code + +Add a `.vscode/mcp.json` to your workspace (VS Code uses the `servers` key; `${input:…}` prompts for your key on first run): + +```json +{ + "servers": { + "taskade": { + "command": "npx", + "args": ["-y", "@taskade/mcp-server"], + "env": { + "TASKADE_API_KEY": "${input:taskade_api_key}" + } + } + } +} +``` + +### 7. HTTP / SSE Mode (remote & custom clients) ```bash TASKADE_API_KEY=your-api-key npx @taskade/mcp-server --http