Fix Cursor one-click install link#31
Merged
Merged
Conversation
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) <noreply@anthropic.com>
This was referenced May 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The "Add to Cursor" button in
sandbox/README.mdwas silently failing because the base64-encoded config used the wrong shape.Decoded before:
{"command":"uvx mcp-server-plaid","env":{"PLAID_CLIENT_ID":"ADD_YOUR_CLIENT_ID","PLAID_SECRET":"ADD_YOUR_API_SECRET"}}Decoded after:
{"command":"uvx","args":["mcp-server-plaid"],"env":{"PLAID_CLIENT_ID":"ADD_YOUR_CLIENT_ID","PLAID_SECRET":"ADD_YOUR_API_SECRET"}}Cursor's install-mcp link expects
commandto be just the executable, with arguments in a separateargsarray (same shape asmcp.json). Concatenating them into thecommandstring makes Cursor try to spawn"uvx mcp-server-plaid"as a single binary, which fails.Refs: https://cursor.com/docs/context/mcp/install-links
Test plan
ADD_YOUR_*placeholders and verify the server starts🤖 Generated with Claude Code
Claude Session: 80ee54fa-3880-4c3c-b81d-9bf74c3adb2c