Skip to content

Commit 94c0f7d

Browse files
authored
Merge pull request #23 from plaid/noitsnotit-patch-2
Update README.md
2 parents b5ee9de + a809bc7 commit 94c0f7d

File tree

1 file changed

+50
-1
lines changed

1 file changed

+50
-1
lines changed

sandbox/README.md

Lines changed: 50 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,58 @@ Add this to your `claude_desktop_config.json`:
7171
```
7272
</details>
7373

74+
### Usage with Cursor
75+
For quick installation, use the one-click installation button
76+
77+
<a href="cursor://anysphere.cursor-deeplink/mcp/install?name=plaid&config=eyJjb21tYW5kIjoidXZ4IiwiYXJncyI6WyJtY3Atc2VydmVyLXBsYWlkIl0sImVudiI6eyJQTEFJRF9DTElFTlRfSUQiOiJBRERfWU9VUl9DTElFTlRfSUQiLCJQTEFJRF9TRUNSRVQiOiJBRERfWU9VUl9BUElfU0VDUkVUIn19"><img src="https://cursor.com/deeplink/mcp-install-dark.png" alt="Add plaid MCP server to Cursor" style="height: 20px;" /></a>
78+
79+
For manual installation, add the following JSON block to Cursor MCP config file,
80+
<details>
81+
<summary>Using uvx</summary>
82+
83+
```json
84+
{
85+
"mcpServers": {
86+
"plaid": {
87+
"command": "uvx",
88+
"args": [
89+
"mcp-server-plaid",
90+
"--client-id",
91+
"YOUR_PLAID_CLIENT_ID",
92+
"--secret",
93+
"YOUR_PLAID_SECRET"
94+
]
95+
}
96+
}
97+
}
98+
```
99+
</details>
100+
101+
<details>
102+
<summary>Using pip installation</summary>
103+
104+
```json
105+
{
106+
"mcpServers": {
107+
"plaid": {
108+
"command": "python",
109+
"args": [
110+
"-m",
111+
"mcp_server_plaid",
112+
"--client-id",
113+
"YOUR_PLAID_CLIENT_ID",
114+
"--secret",
115+
"YOUR_PLAID_SECRET"
116+
]
117+
}
118+
}
119+
}
120+
```
121+
</details>
122+
74123
### Usage with VS Code
75124

76-
For quick installation, use one of the one-click installation buttons below...
125+
For quick installation, use one of the one-click installation buttons below,
77126

78127
[![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)
79128

0 commit comments

Comments
 (0)