From a809bc77ede2c29ed78cd7344e3385acfb7fcbae Mon Sep 17 00:00:00 2001 From: Wang Tian Date: Wed, 4 Jun 2025 17:02:11 -0400 Subject: [PATCH] Update README.md To support the cursor deep link --- sandbox/README.md | 51 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) diff --git a/sandbox/README.md b/sandbox/README.md index 2570807..5083c1c 100644 --- a/sandbox/README.md +++ b/sandbox/README.md @@ -71,9 +71,58 @@ Add this to your `claude_desktop_config.json`: ``` +### Usage with Cursor +For quick installation, use the one-click installation button + +Add plaid MCP server to Cursor + +For manual installation, add the following JSON block to Cursor MCP config file, +
+Using uvx + +```json +{ + "mcpServers": { + "plaid": { + "command": "uvx", + "args": [ + "mcp-server-plaid", + "--client-id", + "YOUR_PLAID_CLIENT_ID", + "--secret", + "YOUR_PLAID_SECRET" + ] + } + } +} +``` +
+ +
+Using pip installation + +```json +{ + "mcpServers": { + "plaid": { + "command": "python", + "args": [ + "-m", + "mcp_server_plaid", + "--client-id", + "YOUR_PLAID_CLIENT_ID", + "--secret", + "YOUR_PLAID_SECRET" + ] + } + } +} +``` +
+ ### Usage with VS Code -For quick installation, use one of the one-click installation buttons below... +For quick installation, use one of the one-click installation buttons below, [![Install with UV in VS Code](https://img.shields.io/badge/VS_Code-UV-0098FF?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=plaid&inputs=%5B%7B%22type%22%3A%22promptString%22%2C%22id%22%3A%22client_id%22%2C%22description%22%3A%22Plaid%20Client%20ID%22%2C%22password%22%3Afalse%7D%2C%7B%22type%22%3A%22promptString%22%2C%22id%22%3A%22secret%22%2C%22description%22%3A%22Plaid%20Secret%22%2C%22password%22%3Atrue%7D%5D&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22mcp-server-plaid%22%5D%2C%22env%22%3A%7B%22PLAID_CLIENT_ID%22%3A%22%24%7Binput%3Aclient_id%7D%22%2C%22PLAID_SECRET%22%3A%22%24%7Binput%3Asecret%7D%22%7D%7D) [![Install with UV in VS Code Insiders](https://img.shields.io/badge/VS_Code_Insiders-UV-24bfa5?style=flat-square&logo=visualstudiocode&logoColor=white)](https://insiders.vscode.dev/redirect/mcp/install?name=plaid&inputs=%5B%7B%22type%22%3A%22promptString%22%2C%22id%22%3A%22client_id%22%2C%22description%22%3A%22Plaid%20Client%20ID%22%2C%22password%22%3Afalse%7D%2C%7B%22type%22%3A%22promptString%22%2C%22id%22%3A%22secret%22%2C%22description%22%3A%22Plaid%20Secret%22%2C%22password%22%3Atrue%7D%5D&config=%7B%22command%22%3A%22uvx%22%2C%22args%22%3A%5B%22mcp-server-plaid%22%5D%2C%22env%22%3A%7B%22PLAID_CLIENT_ID%22%3A%22%24%7Binput%3Aclient_id%7D%22%2C%22PLAID_SECRET%22%3A%22%24%7Binput%3Asecret%7D%22%7D%7D&quality=insiders)