mcp-server-plaid: A Plaid MCP server
Overview
A Model Context Protocol server for facilitating integration with Plaid. This server provides tools to generate mock financial data, search Plaid documentation, and interact with sandbox APIs for testing purposes.
Tools
-
search_documentation- Search Plaid documentation for relevant information about products or API endpoints using with the help of Bill, the friendly robot platypus who reads our docs for fun.
- Returns: Detailed information from Plaid's documentation
-
get_mock_data_prompt- Return prompt to generate customized mock financial data for testing
-
get_sandbox_access_token- Obtain a working access token for the Plaid sandbox environment
- Returns: Access token and item ID for testing with sandbox mocked data
-
simulate_webhook- Simulate a Plaid webhook event in the sandbox environment
- Useful for testing your application's webhook handling
- Returns: Webhook fired status and status code
Configuration
Obtaining API Credentials
- Sign in to your Plaid Developer Dashboard account
- Navigate to Developers → Keys
- Locate your sandbox credentials.
[!IMPORTANT] All
PLAID_CLIENT_IDandPLAID_SECRETreferences in the following MCP configuration use sandbox credentials.
[!NOTE] All snippets below use
uvx. If you installed via pip, swapuvx mcp-server-plaidforpython -m mcp_server_plaid.
Usage with Claude Code
Add this to .mcp.json in your project root (or ~/.claude.json for a user-scoped install):
{
"mcpServers": {
"plaid": {
"command": "uvx",
"args": [
"mcp-server-plaid",
"--client-id",
"YOUR_PLAID_CLIENT_ID",
"--secret",
"YOUR_PLAID_SECRET"
]
}
}
}
Or use the CLI:
claude mcp add plaid -- uvx mcp-server-plaid --client-id YOUR_PLAID_CLIENT_ID --secret YOUR_PLAID_SECRET
Usage with Cursor
For quick installation, use the one-click installation button.
For manual installation, add the following JSON block to Cursor MCP config file.
{
"mcpServers": {
"plaid": {
"command": "uvx",
"args": [
"mcp-server-plaid",
"--client-id",
"YOUR_PLAID_CLIENT_ID",
"--secret",
"YOUR_PLAID_SECRET"
]
}
}
}
Usage with Codex
Add this to ~/.codex/config.toml:
[mcp_servers.plaid]
command = "uvx"
args = ["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 manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P and typing Preferences: Open Settings (JSON).
Optionally, you can add it to a file called .vscode/mcp.json in your workspace. This will allow you to share the configuration with others.
Note that the
mcpkey is needed when using themcp.jsonfile.
{
"mcp": {
"inputs": [
{
"type": "promptString",
"id": "client_id",
"description": "Plaid Client ID",
"password": false
},
{
"type": "promptString",
"id": "secret",
"description": "Plaid Secret",
"password": true
}
],
"servers": {
"plaid": {
"command": "uvx",
"args": ["mcp-server-plaid"],
"env": {
"PLAID_CLIENT_ID": "${input:client_id}",
"PLAID_SECRET": "${input:secret}"
}
}
}
}
}
Usage with Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"plaid": {
"command": "uvx",
"args": [
"mcp-server-plaid",
"--client-id",
"YOUR_PLAID_CLIENT_ID",
"--secret",
"YOUR_PLAID_SECRET"
]
}
}
}
Usage with Zed
Add to your Zed settings.json:
{
"context_servers": {
"mcp-server-plaid": {
"command": {
"path": "uvx",
"args": [
"mcp-server-plaid",
"--client-id",
"YOUR_PLAID_CLIENT_ID",
"--secret",
"YOUR_PLAID_SECRET"
]
}
}
}
}
Debugging
You can use the MCP inspector to debug the server. For uvx installations:
npx @modelcontextprotocol/inspector uvx mcp-server-plaid --client-id YOUR_PLAID_CLIENT_ID --secret YOUR_PLAID_SECRET
Or if you've installed the package in a specific directory or are developing on it:
cd path/to/servers/src/plaid
npx @modelcontextprotocol/inspector uv run mcp-server-plaid --client-id YOUR_PLAID_CLIENT_ID --secret YOUR_PLAID_SECRET
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file mcp_server_plaid-0.1.1.tar.gz.
File metadata
- Download URL: mcp_server_plaid-0.1.1.tar.gz
- Upload date:
- Size: 36.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3a322a0d18669c0c8db72510837f1a4adb583ec82be0f077b90d4aa751adb03a
|
|
| MD5 |
14ece8435d4def34bca1d38687489e9c
|
|
| BLAKE2b-256 |
88f274e473728af2cf86eaa6898e816feb916edc952d152990fc01cb20edf886
|
Provenance
The following attestation bundles were made for mcp_server_plaid-0.1.1.tar.gz:
Publisher:
sandbox-mcp-publish.yml on plaid/ai-coding-toolkit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_server_plaid-0.1.1.tar.gz -
Subject digest:
3a322a0d18669c0c8db72510837f1a4adb583ec82be0f077b90d4aa751adb03a - Sigstore transparency entry: 2412155984
- Sigstore integration time:
-
Permalink:
plaid/ai-coding-toolkit@77126517c8bb2bba7bf8cc755b51fdc1947bd5a9 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/plaid
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
sandbox-mcp-publish.yml@77126517c8bb2bba7bf8cc755b51fdc1947bd5a9 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file mcp_server_plaid-0.1.1-py3-none-any.whl.
File metadata
- Download URL: mcp_server_plaid-0.1.1-py3-none-any.whl
- Upload date:
- Size: 19.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d33ea6ba254aec3ddb1f7f6654301389e8028f815d6e9c2915f4b97d8ea61e87
|
|
| MD5 |
7945482cb3be5be5d79eff205d3e4468
|
|
| BLAKE2b-256 |
9fed76e50a73ce81777f043d499cbcaef626c2705ce49edc97f695b316e23c63
|
Provenance
The following attestation bundles were made for mcp_server_plaid-0.1.1-py3-none-any.whl:
Publisher:
sandbox-mcp-publish.yml on plaid/ai-coding-toolkit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
mcp_server_plaid-0.1.1-py3-none-any.whl -
Subject digest:
d33ea6ba254aec3ddb1f7f6654301389e8028f815d6e9c2915f4b97d8ea61e87 - Sigstore transparency entry: 2412156044
- Sigstore integration time:
-
Permalink:
plaid/ai-coding-toolkit@77126517c8bb2bba7bf8cc755b51fdc1947bd5a9 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/plaid
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
sandbox-mcp-publish.yml@77126517c8bb2bba7bf8cc755b51fdc1947bd5a9 -
Trigger Event:
workflow_dispatch
-
Statement type: