Cursor
Cursor supports MCP servers through a mcp.json config file. The shape is the same as Claude Code's .mcp.json, so the same Bearer-token snippet works in both.
Setup
Get a Bearer token by visiting
https://<your-workspace>.plaid.cloud/mcp/setup/tokenin a browser where you're signed into PlaidCloud.Open Cursor's MCP config:
- Project-scoped: create
.cursor/mcp.jsonin your project root. - User-scoped (all projects): create
~/.cursor/mcp.jsonin your home directory.
- Project-scoped: create
Add the PlaidCloud server:
{ "mcpServers": { "plaidcloud": { "url": "https://<your-workspace>.plaid.cloud/mcp/", "headers": { "Authorization": "Bearer eyJhbGc…" } } } }Open Cursor's Settings → MCP to verify the server is connected. If it shows an error, see Troubleshooting.
Using the tools
In Cursor's Composer or chat panel, you can prompt the agent in plain English ("describe the structure of project Q4 Forecast") and it will pick the appropriate plaidcloud_* tool. Tool calls and responses appear inline — review mutating operations before approving.
Refreshing the token
When the token expires, reload https://<your-workspace>.plaid.cloud/mcp/setup/token and paste the new value into mcp.json. Cursor picks up the change without a full restart — toggle the server off/on in Settings → MCP if needed.
Multiple tenants
Repeat the entry under a different name:
{
"mcpServers": {
"plaidcloud-prod": { "url": "https://prod.plaid.cloud/mcp/", "headers": { "Authorization": "Bearer …" } },
"plaidcloud-dev": { "url": "https://dev.plaid.cloud/mcp/", "headers": { "Authorization": "Bearer …" } }
}
}