docs: one-click Add to Cursor / Install in VS Code badges#42
Conversation
|
There was a problem hiding this comment.
Pull request overview
Adds one-click install badges to the README to make MCP setup easier in popular clients, improving Quick Start conversion without changing runtime behavior.
Changes:
- Add a Cursor “Add to Cursor” deeplink badge that installs the
npx @taskade/mcp-serverstdio config. - Add a VS Code “Install in VS Code” deeplink badge that installs the same config and prompts for the API key via
${input:…}.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| [](https://github.com/taskade/mcp) | ||
| [](https://github.com/taskade/mcp/blob/main/LICENSE) | ||
|
|
||
| [](cursor://anysphere.cursor-deeplink/mcp/install?name=taskade&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkB0YXNrYWRlL21jcC1zZXJ2ZXIiXSwiZW52Ijp7IlRBU0tBREVfQVBJX0tFWSI6IllPVVJfVEFTS0FERV9BUElfS0VZIn19) |
✅ Validated → fixed → ready to merge
QA: decoded badge config → {"command":"npx","args":["-y","@taskade/mcp-server"],"env":{"TASKADE_API_KEY":"your-api-key-here"}}Confidence: high · zero regression (markdown only). Merging. |
7f2d343 to
2dd292a
Compare
Quick Start previously only offered copy-paste JSON config. These deep-link badges write the npx @taskade/mcp-server config directly into the client: - Cursor: cursor://anysphere.cursor-deeplink/mcp/install (base64 config) - VS Code: vscode:mcp/install (url-encoded config, prompts for the API key) One-click install converts far better than manual config.
Addresses Copilot review: the Cursor deeplink encoded YOUR_TASKADE_API_KEY while the rest of the Quick Start uses your-api-key-here. Re-encode the badge config to match.
d3b9b6f to
f9ac88b
Compare
What & why
The Quick Start only showed copy-paste JSON. These deep-link install badges write the
npx @taskade/mcp-serverconfig straight into the client — the highest-ROI README conversion change.cursor://anysphere.cursor-deeplink/mcp/install?name=taskade&config=<base64>vscode:mcp/install?<url-encoded config>(prompts for the API key via${input:…})Zero-regression
npxstdio config (verified round-trip).Deliberately scoped out (would 404 today)
Stacked on
main. Will auto-retarget as the chain merges.