From f515e3e8f18c2e3c469ed56f7df23182c38addf5 Mon Sep 17 00:00:00 2001 From: Alex Hoffer Date: Mon, 18 May 2026 22:51:54 -0700 Subject: [PATCH] Fix Cursor one-click install link The base64-encoded config embedded `mcp-server-plaid` into the `command` string. Cursor expects `command` to be the executable only, with arguments in a separate `args` array (per the mcp.json schema), so the install was silently failing. Decoded before: {"command":"uvx mcp-server-plaid","env":{...}} Decoded after: {"command":"uvx","args":["mcp-server-plaid"],"env":{...}} Co-Authored-By: Claude Opus 4.7 (1M context) --- sandbox/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sandbox/README.md b/sandbox/README.md index 4b180db..da61292 100644 --- a/sandbox/README.md +++ b/sandbox/README.md @@ -67,7 +67,7 @@ claude mcp add plaid -- uvx mcp-server-plaid --client-id YOUR_PLAID_CLIENT_ID -- For quick installation, use the one-click installation button. -[![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/install-mcp?name=plaid&config=eyJjb21tYW5kIjoidXZ4IG1jcC1zZXJ2ZXItcGxhaWQiLCJlbnYiOnsiUExBSURfQ0xJRU5UX0lEIjoiQUREX1lPVVJfQ0xJRU5UX0lEIiwiUExBSURfU0VDUkVUIjoiQUREX1lPVVJfQVBJX1NFQ1JFVCJ9fQ%3D%3D) +[![Install MCP Server](https://cursor.com/deeplink/mcp-install-dark.svg)](https://cursor.com/install-mcp?name=plaid&config=eyJjb21tYW5kIjoidXZ4IiwiYXJncyI6WyJtY3Atc2VydmVyLXBsYWlkIl0sImVudiI6eyJQTEFJRF9DTElFTlRfSUQiOiJBRERfWU9VUl9DTElFTlRfSUQiLCJQTEFJRF9TRUNSRVQiOiJBRERfWU9VUl9BUElfU0VDUkVUIn19) For manual installation, add the following JSON block to Cursor MCP config file.