You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sandbox/README.md
+50-1Lines changed: 50 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,9 +71,58 @@ Add this to your `claude_desktop_config.json`:
71
71
```
72
72
</details>
73
73
74
+
### Usage with Cursor
75
+
For quick installation, use the one-click installation button
76
+
77
+
<ahref="cursor://anysphere.cursor-deeplink/mcp/install?name=plaid&config=eyJjb21tYW5kIjoidXZ4IiwiYXJncyI6WyJtY3Atc2VydmVyLXBsYWlkIl0sImVudiI6eyJQTEFJRF9DTElFTlRfSUQiOiJBRERfWU9VUl9DTElFTlRfSUQiLCJQTEFJRF9TRUNSRVQiOiJBRERfWU9VUl9BUElfU0VDUkVUIn19"><imgsrc="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
+
74
123
### Usage with VS Code
75
124
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,
77
126
78
127
[](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) [](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)
0 commit comments