Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 50 additions & 1 deletion sandbox/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,58 @@ Add this to your `claude_desktop_config.json`:
```
</details>

### Usage with Cursor
For quick installation, use the one-click installation button

<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>

For manual installation, add the following JSON block to Cursor MCP config file,
<details>
<summary>Using uvx</summary>

```json
{
"mcpServers": {
"plaid": {
"command": "uvx",
"args": [
"mcp-server-plaid",
"--client-id",
"YOUR_PLAID_CLIENT_ID",
"--secret",
"YOUR_PLAID_SECRET"
]
}
}
}
```
</details>

<details>
<summary>Using pip installation</summary>

```json
{
"mcpServers": {
"plaid": {
"command": "python",
"args": [
"-m",
"mcp_server_plaid",
"--client-id",
"YOUR_PLAID_CLIENT_ID",
"--secret",
"YOUR_PLAID_SECRET"
]
}
}
}
```
</details>

### 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)

Expand Down